Bug 735641 - No way to deselect image of image document after select all (Ctrl+A). r=bz

This commit is contained in:
Mats Palmgren 2012-05-04 02:14:01 +02:00
parent fe52b9bdf6
commit 04f80a03f0
3 changed files with 47 additions and 6 deletions

View File

@ -1809,12 +1809,6 @@ nsFrameSelection::TakeFocus(nsIContent *aNewFocus,
mStartSelectedCell = nsnull;
mEndSelectedCell = nsnull;
mAppendStartSelectedCell = nsnull;
//HACKHACKHACK
if (!aNewFocus->GetParent())
return NS_ERROR_FAILURE;
//END HACKHACKHACK /checking for root frames/content
mHint = aHint;
PRInt8 index = GetIndexFromSelectionType(nsISelectionController::SELECTION_NORMAL);

View File

@ -131,6 +131,7 @@ _TEST_FILES = \
test_bug719515.html \
test_bug719518.html \
test_bug719523.html \
test_bug735641.html \
test_bug748961.html \
$(NULL)

View File

@ -0,0 +1,46 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=735641
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 735641</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=735641">Mozilla Bug 735641</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 735641 **/
SimpleTest.waitForExplicitFinish();
var w;
function runTest() {
try {
var s = w.document.getSelection();
s.selectAllChildren(w.document.body);
synthesizeMouse(w.document.body,1,1,{},w);
ok(s.isCollapsed,"mouse click on <body> did reset the selection in image document");
} finally {
w.close();
}
SimpleTest.finish();
}
w=window.open("file_Dolske.png","_blank");
w.addEventListener("load", function() {setTimeout(runTest,0)}, false);
</script>
</pre>
</body>
</html>