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

Unified Diff: LayoutTests/webarchive/test-link-rel-icon-beforeload.html

Issue 14046041: Remove webarchive tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/webarchive/test-link-rel-icon-beforeload.html
diff --git a/LayoutTests/webarchive/test-link-rel-icon-beforeload.html b/LayoutTests/webarchive/test-link-rel-icon-beforeload.html
deleted file mode 100644
index e1499956647c90dd24306263f80a7397413fa10b..0000000000000000000000000000000000000000
--- a/LayoutTests/webarchive/test-link-rel-icon-beforeload.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<head>
-<script>
-function runTest()
-{
- if (window.testRunner) {
- testRunner.setIconDatabaseEnabled(true);
- testRunner.dumpDOMAsWebArchive();
- testRunner.queueReload();
- }
-}
-</script>
-</head>
-<body onload="runTest()">
-<div id="console"></div>
-<script>
-function print(message, color)
-{
- var paragraph = document.createElement("div");
- paragraph.appendChild(document.createTextNode(message));
- paragraph.style.fontFamily = "monospace";
- if (color)
- paragraph.style.color = color;
- document.getElementById("console").appendChild(paragraph);
-}
-</script>
-<p>This test should have a green 'PASS' just above this line. If it doesn't, you failed.
-<link rel="icon" onbeforeload="print('PASS','green');return false" href="resources/favicon.ico" type="image/x-icon">
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698