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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/parser/write-script-waiting-for-style-crash.html

Issue 2099583002: When pumping tokens yield for scripts waiting for resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improved test. Created 4 years, 6 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
OLDNEW
(Empty)
1 <iframe id="f"></iframe>
2 <script>
3 testRunner.dumpAsText();
4 testRunner.waitUntilDone();
5 let n = 0;
6 window.onmessage = (event) => {
7 n++;
8 if (n > 3) {
9 document.body.textContent = 'PASS did not crash';
10 testRunner.notifyDone();
11 }
12 };
13 f.src = 'resources/write-script-waiting-for-style-crash.html';
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698