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

Side by Side Diff: LayoutTests/fast/loader/subresource-load-failed-crash.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body id='console'>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 }
8
9 var xhr = new XMLHttpRequest;
10 function secondRequest()
11 {
12 xhr.onreadystatechange = function()
13 {
14 if (xhr.readyState == xhr.DONE) {
15 document.getElementById('console').appendChild(document.createTextNo de("PASS"));
16 testRunner.notifyDone();
17 }
18 }
19 xhr.open("GET", "", true);
20 xhr.send();
21 }
22 window.addEventListener("DOMSubtreeModified", secondRequest, true);
23
24 document.head.appendChild(document.createTextNode('X'));
25 </script>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698