mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 01:17:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
45
dom/events/test/test_bug924087.html
Normal file
45
dom/events/test/test_bug924087.html
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=924087
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 924087</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>
|
||||
<div contenteditable><a id="editable" href="#">editable link</a></div>
|
||||
<a id="noneditable" href="#">non-editable link</a>
|
||||
<input>
|
||||
<textarea></textarea>
|
||||
<pre id="test">
|
||||
<script type="application/javascript;version=1.8">
|
||||
|
||||
/** Test for Bug 924087 **/
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
SimpleTest.waitForFocus(function() {
|
||||
var editable = document.querySelector("#editable");
|
||||
var noneditable = document.querySelector("#noneditable");
|
||||
var input = document.querySelector("input");
|
||||
var textarea = document.querySelector("textarea");
|
||||
synthesizeMouseAtCenter(noneditable, {type:"mousedown"});
|
||||
is(document.querySelector(":active:link"), noneditable, "Normal links should become :active");
|
||||
synthesizeMouseAtCenter(noneditable, {type:"mouseup"});
|
||||
synthesizeMouseAtCenter(editable, {type:"mousedown"});
|
||||
is(document.querySelector(":active:link"), null, "Editable links should not become :active");
|
||||
synthesizeMouseAtCenter(editable, {type:"mouseup"});
|
||||
[input, textarea].forEach(textbox => {
|
||||
synthesizeMouseAtCenter(textbox, {type:"mousedown"});
|
||||
is(document.querySelector(textbox.localName + ":active"), textbox, "The textbox should become :active");
|
||||
synthesizeMouseAtCenter(textbox, {type:"mouseup"});
|
||||
});
|
||||
SimpleTest.finish();
|
||||
});
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue