mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 735641 - No way to deselect image of image document after select all (Ctrl+A). r=bz
This commit is contained in:
parent
fe52b9bdf6
commit
04f80a03f0
@ -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);
|
||||
|
@ -131,6 +131,7 @@ _TEST_FILES = \
|
||||
test_bug719515.html \
|
||||
test_bug719518.html \
|
||||
test_bug719523.html \
|
||||
test_bug735641.html \
|
||||
test_bug748961.html \
|
||||
$(NULL)
|
||||
|
||||
|
46
layout/generic/test/test_bug735641.html
Normal file
46
layout/generic/test/test_bug735641.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user