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

Unified 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, 2 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/cache/cancel-image-via-src-change.html
diff --git a/LayoutTests/http/tests/cache/cancel-image-via-src-change.html b/LayoutTests/http/tests/cache/cancel-image-via-src-change.html
deleted file mode 100644
index ea9835fceefb277011754db6ceac0b48e9a56200..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/cache/cancel-image-via-src-change.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<body>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- testRunner.dumpResourceLoadCallbacks();
-}
-
-onload = function() {
- var img = new Image();
- img.src = "resources/empty.txt";
- document.body.appendChild(img);
- img.src = "resources/compass-no-cache.jpg";
- img.onload = function() {
- if (window.testRunner)
- testRunner.notifyDone();
- }
-}
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698