Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / range / slider-zero-size-crash.html
blob1cd27eee3e589b43e46a1568caaf16a456c70019
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>A slider with '0' size does not lead to a crash</title>
5 <link rel="author" title="Mikhail Pozdnyakov" href="mailto:mikhail.pozdnyakov@intel.com" />
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 </script>
10 </head>
11 <input type="range" id="slider"/>
12 <script>
13 document.getElementById("slider").style.height="0px"
14 document.getElementById("slider").style.width="0px";
15 </script>
16 <p>This test passes if it does not crash.</p>
17 </html>