Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Side by Side Diff: LayoutTests/http/tests/misc/stop-loading-on-resource-timing-buffer-full-crash.html

Issue 23498018: [Resource Timing] Fix potential double free problem (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add layout test Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/misc/stop-loading-on-resource-timing-buffer-full-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../resources/js-test-pre.js"></script>
4 <script>
5
6 performance.onwebkitresourcetimingbufferfull = function() {
7 window.stop();
8 document.body.innerHTML = "PASS. No crash when stop loading on resource timing buffer full.";
9 setTimeout("testRunner.notifyDone()", 0);
10 };
11
12 performance.webkitSetResourceTimingBufferSize(1);
13 </script>
14 </head>
15 <body>
16 <script>
17 if (window.testRunner) {
18 testRunner.dumpAsText();
19 testRunner.waitUntilDone();
20 }
21 </script>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/misc/stop-loading-on-resource-timing-buffer-full-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698