Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / constructors / blob-sparse-array-assertion-failure.html
blobce19f93ba43dbea22b78b83646ee03474c7f91ce
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function log(message)
7 document.getElementById('console').appendChild(document.createTextNode(message + "\n"));
10 function test()
12 new Blob(Array(100));
13 log("DONE");
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 </script>
19 </head>
20 <body onload="test()">
21 Test that constructing a Blob with a sparse array doesn't trigger an assertion failure.
22 <br>
23 <a href="https://bugs.webkit.org/show_bug.cgi?id=101869">https://bugs.webkit.org/show_bug.cgi?id=101869</a>
24 <pre id='console'></pre>
25 </body>
26 </html>