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

Unified Diff: LayoutTests/fast/frames/lots-of-objects.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
Index: LayoutTests/fast/frames/lots-of-objects.html
diff --git a/LayoutTests/fast/frames/lots-of-objects.html b/LayoutTests/fast/frames/lots-of-objects.html
deleted file mode 100644
index 21fe99576203799f28ce09ab759d48ff997b39fa..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/lots-of-objects.html
+++ /dev/null
@@ -1,35 +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 objects</title>
-<script type="text/javascript">
- var maxNumberOfFrames = 1000;
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var createdObjects = 0;
- function count() {
- createdObjects++;
-
- if (createdObjects == maxNumberOfFrames) {
- var str = "Created precisely " + maxNumberOfFrames + " objects.<br>PASS";
- document.getElementById("status").innerHTML = str;
- } else if (createdObjects > maxNumberOfFrames) {
- var str = "Created " + createdObjects + " objects (max: " + maxNumberOfFrames + ").<br>FAIL";
- document.getElementById("status").innerHTML = str;
- }
- }
-
- function createObjects(nbr) {
- var str = "<div id=\"status\"></div>";
- for (var i = 0; i < maxNumberOfFrames + 1; i++) {
- str += "<object onLoad=\"count()\" data=\"data:text/html,object_" + i + "\"></object>";
- }
- document.getElementsByTagName("body")[0].innerHTML = str;
- }
-</script>
-</head>
-<body onLoad="createObjects()">
-</body>
-</html>
« no previous file with comments | « LayoutTests/fast/frames/lots-of-iframes-expected.txt ('k') | LayoutTests/fast/frames/lots-of-objects-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698