Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / misc / stop-loading-on-resource-timing-buffer-full-crash.html
1 <html>
2 <body>
3 <script src="/js-test-resources/js-test.js"></script>
4 <script>
5 if (window.testRunner) {
6     testRunner.dumpAsText();
7     testRunner.waitUntilDone();
8 }
9
10 performance.onwebkitresourcetimingbufferfull = function() { 
11   window.stop();
12   document.body.innerHTML = "PASS. No crash when stop loading on resource timing buffer full.";
13   setTimeout("testRunner.notifyDone()", 0);
14 };
15
16 performance.webkitSetResourceTimingBufferSize(1);
17 </script>
18 </body>
19 </html>