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

Unified Diff: LayoutTests/fast/frames/lots-of-iframes.html

Issue 18951003: Skip or delete a bunch of timing out tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete a few more tests Created 7 years, 5 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/frames/lots-of-iframes-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/frames/lots-of-iframes.html
diff --git a/LayoutTests/fast/frames/lots-of-iframes.html b/LayoutTests/fast/frames/lots-of-iframes.html
deleted file mode 100644
index d6e8b7aa8c84731058522ac5993aeae9d93f6447..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/lots-of-iframes.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title>Lots of iframes</title>
-<script type="text/javascript">
- var maxNumberOfFrames = 1000;
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function createIFrames() {
- var str = "<div id=\"status\"></div>";
- for (var i = 0; i < maxNumberOfFrames + 1; i++) {
- str += "<iframe id=\"i" + i + "\" src=\"data:text/html,iframe_" + i + "\"></iframe>";
- }
- document.getElementsByTagName("body")[0].innerHTML = str;
-
- var results = "";
-
- var f = document.getElementById("i" + (maxNumberOfFrames - 1));
- if (f && f.contentWindow) {
- results += "Sucessfully created " + maxNumberOfFrames + " frames.<br>";
- } else {
- results += "Failed to create " + maxNumberOfFrames + " frames.<br>";
- }
-
- var g = document.getElementById("i" + maxNumberOfFrames);
- if (g && g.contentWindow) {
- results += "Failed to block creation of frame number " + (maxNumberOfFrames + 1) + ".";
- } else {
- results += "Successfully blocked creation of frame number " + (maxNumberOfFrames + 1) + ".";
- }
-
- document.getElementById("status").innerHTML = results;
- }
-</script>
-</head>
-<body onLoad="createIFrames()">
-</body>
-</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/frames/lots-of-iframes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698