Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / lists / dynamic-marker-crash.html
blob94dc792bd4b40ec9c508a3628964869688a7d6d4
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <title>Test</title>
6 <script type="text/javascript">
7 function displayOnOff(el)
9 el.style.display = (el.style.display == 'block') ? 'none' : 'block';
11 </script>
12 </head>
13 <body>
15 <!-- Removing the <ul> and <li> elements will make this work in Safari! -->
16 <ul>
17 <li>
18 <form action="./" id="myform" method="get" style="display:none">
19 <p><input id="tag_list" name="tag_list" size="40" type="text" value="blah blubb" >
20 </p>
21 </form>
22 <p>There should be an input field above this line of text.</a></p>
23 </li>
24 </ul>
25 <script>
26 document.body.offsetLeft
27 displayOnOff(document.getElementById('myform'))
28 document.body.offsetLeft
29 </script>
30 </body>
31 </html>