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

Unified Diff: LayoutTests/fast/dom/gc-10.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/gc-10.html
diff --git a/LayoutTests/fast/dom/gc-10.html b/LayoutTests/fast/dom/gc-10.html
deleted file mode 100644
index e54b3e279407c47716364f89b91bc20de5f65ebd..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/gc-10.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<html>
-<head>
-<title>GC test 10</title>
-<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);
-}
-
-var threshold = 5;
-
-function test()
-{
- if (window.GCController)
- {
- global = window.frames.myframe.location.reload; // Eagerly construct these properties so they don't influence test outcome.
-
- GCController.collect();
- var before = GCController.getJSObjectCount();
-
- window.frames.myframe.location.reload(true);
- window.frames.myframe.location.reload(true);
- window.frames.myframe.location.reload(true);
-
- GCController.collect();
- var after = GCController.getJSObjectCount();
-
- // Unfortunately we cannot do a strict check here because there is still very minor (3) JS object increase,
- // likely due to temporary JS objects being created during further execution of this test function.
- // However, the iframe document leaking everything has an addition of ~25 objects every
- // refresh, so it still is an accurate test.
- if (after > (before + threshold))
- {
- print("FAIL: " + before + " objects before refresh, " + after + " objects after refresh.", "red");
- }
- else
- {
- print("PASS: Refresh did not leak JS objects.", "green");
- }
- }
- else
- {
- print("WARNING: Test cannot run if GCController does not exist. Thus it only runs from the test interface.", "red");
- }
-}
-
-</script>
-</head>
-
-<body style="color: black" onload="test()">
-<p>This page tests to make sure that the refresh of a page which holds a document reference in its DOM wrapper tree
-does not leak all of its associated JS objects.</p>
-<p>If the test passes, you'll see a single 'PASS' message below.</p>
-<hr>
-
-<div id='console'></div>
-
-<iframe name="myframe" id="myframe" src="resources/gc-10-frame.html">
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698