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

Side by Side Diff: LayoutTests/http/tests/cache/cancel-image-via-src-change.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 <body>
2 <script>
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 testRunner.dumpResourceLoadCallbacks();
7 }
8
9 onload = function() {
10 var img = new Image();
11 img.src = "resources/empty.txt";
12 document.body.appendChild(img);
13 img.src = "resources/compass-no-cache.jpg";
14 img.onload = function() {
15 if (window.testRunner)
16 testRunner.notifyDone();
17 }
18 }
19 </script>
20 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698