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

Unified Diff: LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html

Issue 14195011: Removed WONTFIX 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/fast/dom/HTMLScriptElement/nested-execution.html
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html b/LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html
deleted file mode 100644
index 410e660cf06b7a351b26e5ceee81a32087dc8601..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<head>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- var started = false;
- var executed = false;
- var canPass = false;
-
- function test()
- {
- var cachingElement = document.getElementById("cache-script");
- var script = document.createElement("script");
- script.src = cachingElement.src;
- started = true;
- document.body.appendChild(script);
- if (executed)
- document.getElementById("result").innerText = "FAIL: Script executed synchronously beneath appendChild()";
- else
- canPass = true;
-
- if (window.testRunner)
- testRunner.setCacheModel(0); // WebCacheModelDocumentViewer
- }
- </script>
-</head>
-<body>
- <div id="result">FAIL: Test did not run</div>
- <!-- loads the script into the cache, then begins the test -->
- <script id="cache-script" onload="setTimeout(test, 0)" src="resources/nested-execution.js"></script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698