Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / preserveFormDuringResidualStyle.html
bloba2bc8b5eda86a86e5b70e5d5717aebe64db3aa38
1 <HTML>
2 <BODY>
3 <font>
4 <center>
5 <table>
6 <TR>
7 <form name="form" id="form" starget=_top action="/n/click.cgi">
8 <input id="mover" type=hidden name=d value=722001303>
9 <TD>
10 <input type=image src="resources/apple.gif">
11 <input type=hidden name=q value="bar">
12 </TD>
13 </form>
14 </tr>
15 </table>
16 </font>
17 </center>
19 <div id="result">Failed.</div>
21 <script>
23 var input = document.getElementById("mover");
24 if (input.form) {
25 var div = document.getElementById("result");
26 div.innerHTML = "Success! This test succeeds if the input named mover is not detached from its form when it is moved around in the DOM to come before the table."
29 </script>
31 </body>
32 </html>