Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / br-with-clearance-after-collapsing-space.html
blob9655b8543390dbd40ddaf723c090c8db5033b130
1 <html>
2 <head>
3 <script type="text/javascript">
4 if (window.testRunner) {
5 testRunner.waitUntilDone();
7 function test() {
8 var testEl = document.getElementById("limittest");
9 testEl.focus()
10 testEl.blur()
11 if (window.testRunner)
12 setTimeout("testRunner.notifyDone()", 0);
14 </script>
15 <style>
16 * { margin:0; padding:0; }
17 form.colly { width: 100%; }
18 form.colly label { float: left; height: 30px; margin: 5px 0px 0px; }
19 form.colly br { clear: both; }
20 </style>
21 </head>
22 <body onload="test()">
23 <form class="colly">
24 <label for="hidesubpages">Hide subpages</label>
25 <input type="checkbox" name="hidesubpages" value="on" />
26 <br />
27 <select name="limit" id="limittest">
28 <option value="10">10000</option>
29 <option value="25" selected="selected">2</option>
30 <option value="50">5</option>
31 </select>
32 </form>
33 </body>
34 </html>