layout/style/test/chrome/test_hover.html

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>Test for :hover</title>
michael@0 5 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
michael@0 6 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
michael@0 7 <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
michael@0 8 </head>
michael@0 9 <body onload="startTest();">
michael@0 10 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=">Mozilla Bug </a>
michael@0 11 <div id="display">
michael@0 12
michael@0 13 </div>
michael@0 14 <pre id="test">
michael@0 15 <script type="application/javascript">
michael@0 16
michael@0 17 SimpleTest.waitForExplicitFinish();
michael@0 18
michael@0 19 function startTest() {
michael@0 20 // Run the test in a separate window so that the parent document doesn't have
michael@0 21 // anything that will cause reflows and dispatch synth mouse moves when we don't
michael@0 22 // want them and disturb our test.
michael@0 23 window.open("hover_helper.html", "hover_helper", "width=200,height=300");
michael@0 24 }
michael@0 25
michael@0 26 </script>
michael@0 27 </pre>
michael@0 28 </body>
michael@0 29 </html>

mercurial