зеркало из https://github.com/mozilla/gecko-dev.git
Bug 556493 - No click fired when mousedown on the text of an element and mouseup on empty area, r=jst
--HG-- extra : rebase_source : bf2257df87153638358404878d03c09193014125
This commit is contained in:
Родитель
0403e4139f
Коммит
a644344ae5
|
@ -3781,7 +3781,8 @@ nsEventStateManager::UpdateDragDataTransfer(nsDragEvent* dragEvent)
|
|||
|
||||
nsIContent* GetParentContentForMouseTarget(nsIContent* aContent)
|
||||
{
|
||||
return aContent && aContent->IsInNativeAnonymousSubtree() ?
|
||||
return aContent && (aContent->IsInNativeAnonymousSubtree() ||
|
||||
aContent->IsNodeOfType(nsINode::eTEXT)) ?
|
||||
aContent->GetParent() : nsnull;
|
||||
}
|
||||
|
||||
|
|
|
@ -87,6 +87,7 @@ _TEST_FILES = \
|
|||
test_bug545268.html \
|
||||
test_bug547996-1.html \
|
||||
test_bug547996-2.xhtml \
|
||||
test_bug556493.html \
|
||||
$(NULL)
|
||||
|
||||
_CHROME_FILES = \
|
||||
|
|
|
@ -0,0 +1,75 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=556493
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 556493</title>
|
||||
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
||||
<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"/>
|
||||
<style>
|
||||
div {
|
||||
border: 1px solid;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body onload="setTimeout(runTest, 0)">
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=556493">Mozilla Bug 556493</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
|
||||
/** Test for Bug 556493 **/
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
var downCount = 0;
|
||||
var upCount = 0;
|
||||
var clickCount = 0;
|
||||
function runTest() {
|
||||
var d0 = document.getElementById("d0");
|
||||
var d1 = document.getElementById("d1");
|
||||
var d2 = document.getElementById("d2");
|
||||
|
||||
d0.onmousedown = function(e) { ++downCount; };
|
||||
d0.onmouseup = function(e) { ++upCount; }
|
||||
d0.onclick = function(e) { ++clickCount; }
|
||||
|
||||
synthesizeMouse(d1, 3, 3, { type: "mousedown"});
|
||||
synthesizeMouse(d1, 3, 3, { type: "mouseup"});
|
||||
|
||||
is(downCount, 1, "Wrong mousedown event count!");
|
||||
is(upCount, 1, "Wrong mouseup event count!");
|
||||
is(clickCount, 1, "Wrong click event count!");
|
||||
|
||||
synthesizeMouse(d1, 3, 3, { type: "mousedown"});
|
||||
synthesizeMouse(d1, 30, 3, { type: "mouseup"});
|
||||
|
||||
is(downCount, 2, "Wrong mousedown event count!");
|
||||
is(upCount, 2, "Wrong mouseup event count!");
|
||||
is(clickCount, 2, "Wrong click event count!");
|
||||
|
||||
synthesizeMouse(d1, 3, 3, { type: "mousedown"});
|
||||
synthesizeMouse(d2, 3, 3, { type: "mouseup"});
|
||||
|
||||
is(downCount, 3, "Wrong mousedown event count!");
|
||||
is(upCount, 3, "Wrong mouseup event count!");
|
||||
is(clickCount, 2, "Wrong click event count!");
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
<div id="d0">
|
||||
Test divs --
|
||||
<div id="d1">t</div><div id="d2">t</div>
|
||||
--
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче