Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLProgressElement / progress-element-with-style-crash.html
blob1524588ccccb0b4d1262d624bb6b2dcb1eb3bed7
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
9 function test() {
10 // It is necessary to allow some time for the progress bar to render the
11 // progress and produce the crash.
12 window.setTimeout(function() {
13 if (window.testRunner)
14 testRunner.notifyDone();
15 }, 10);
17 </script>
18 </head>
19 <body onload="test();">
20 <h1>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=50341">Bug 50341</a>. It is not OK to crash.</h1>
21 <progress style='font: 1 required'/>
22 </body>
23 </html>