gecko/parser/htmlparser/tests/mochitest/test_bug418464.html
Henri Sivonen 4ed8dd0ba9 Bug 547685 - Weaken test_bug418464.html to make both the old and the HTML5 parser pass. r=bzbarsky.
--HG--
extra : rebase_source : 36fb899487e57618e50b697a75c659c89defb4b7
2010-02-23 15:58:17 +02:00

46 lines
1.2 KiB
HTML

<form name="formGo" method="post">
<input type="hidden">
</form>
<script>
var form1 = document.formGo;
</script>
<form name="formGo2" method="post">
<input type="Hidden">
</form>
<script>
var form2 = document.formGo2;
</script>
<!-- NOTE: The forms and scripts above this comment _must_ come first in this file-->
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=418464
-->
<head>
<title>Test for Bug 418464</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.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=418464">Mozilla Bug 418464</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 418464 **/
// Commented out until the HTML5 parser is on by default
// is(form1 instanceof HTMLFormElement, true,
// "Should have a form here");
is(form2 instanceof HTMLFormElement, true,
"Should have a form here");
</script>
</pre>
</body>
</html>