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

Unified Diff: LayoutTests/fast/js/document-all-between-frames.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/js/document-all-between-frames.html
diff --git a/LayoutTests/fast/js/document-all-between-frames.html b/LayoutTests/fast/js/document-all-between-frames.html
deleted file mode 100644
index d7361845c6d177e4d111e0046522a2d921ab9cae..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/document-all-between-frames.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<script src="resources/js-test-pre.js"></script>
-</head>
-<body>
-<script>
-window.passUp = null;
-</script>
-<iframe id="subframe" src="resources/document-all-between-frames-subframe.html"></iframe>
-<script>
-window.jsTestIsAsync = true;
-window.passUp = [];
-function waitForResponse() {
- if (window.passUp.length < (9 * 300) + 1) {
- setTimeout(waitForResponse, 100);
- return;
- }
- for (var i = 0; i < window.passUp.length; i++) {
- debug(window.passUp[i]);
- }
- if (testRunner) {
- testRunner.notifyDone();
- }
-}
-
-var subframe = document.getElementById("subframe");
-subframe.contentWindow.passDown = document.all;
-if (document.all) {
- debug("FAIL: document.all didn't masquerade as undefined");
-} else {
- debug("document.all masqueraded as undefined");
-}
-setTimeout(waitForResponse, 100);
-</script>
-<script src="resources/js-test-post.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698