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
60
dom/events/test/test_bug299673-2.html
Normal file
60
dom/events/test/test_bug299673-2.html
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=299673
|
||||
-->
|
||||
<head>
|
||||
<title>Test #2 for Bug 299673</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body id="Body">
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=299673">Mozilla Bug 299673</a>
|
||||
<p id="display">
|
||||
|
||||
<SELECT id="Select1" onchange="log(event); OpenWindow()" onfocus="log(event); " onblur="log(event)">
|
||||
<OPTION selected>option1</OPTION>
|
||||
<OPTION>option2</OPTION>
|
||||
<OPTION>option3</OPTION>
|
||||
</SELECT>
|
||||
|
||||
<INPUT id="Text1" type="text" onfocus="log(event)" onblur="log(event)">
|
||||
<INPUT id="Text2" type="text" onfocus="log(event)" onblur="log(event)">
|
||||
|
||||
</p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
|
||||
<pre id="test">
|
||||
|
||||
<script src="bug299673.js"></script>
|
||||
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test #2 for Bug 299673 **/
|
||||
function doTest(expectedEventLog) {
|
||||
var eventLogForNewTab = '\
|
||||
: Test with browser.link.open_newwindow = 3\n\
|
||||
: focus top-doc\n\
|
||||
SELECT(Select1): focus \n\
|
||||
SELECT(Select1): change \n\
|
||||
: >>> OpenWindow\n\
|
||||
: blur top-doc\n\
|
||||
: focus popup-doc\n\
|
||||
INPUT(popupText1): focus \n\
|
||||
: <<< OpenWindow\n\
|
||||
SELECT(Select1): blur \n\
|
||||
INPUT(popupText1): blur \n\
|
||||
: blur popup-doc\n\
|
||||
: focus top-doc\n\
|
||||
'
|
||||
setPrefAndDoTest(eventLogForNewTab,'Body',3); // 3 = open new window as tab
|
||||
}
|
||||
|
||||
todo(false, "Please write a test for bug 299673 that actually works, see bug 553417");
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue