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

Unified Diff: LayoutTests/fast/dom/resources/leak-check.js

Issue 21274004: Fix Document leak from NodeFilter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: don't print numberOfLiveDocuments when test passed 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/dom/resources/leak-check.js
diff --git a/LayoutTests/fast/dom/resources/leak-check.js b/LayoutTests/fast/dom/resources/leak-check.js
new file mode 100644
index 0000000000000000000000000000000000000000..2afe25be438a7d74af13f4b8faf938a65eb4ba76
--- /dev/null
+++ b/LayoutTests/fast/dom/resources/leak-check.js
@@ -0,0 +1,68 @@
+// include fast/js/resources/js-test-pre.js before this file.
+
+function doLeakTest(src, tolerance) {
+ function getCounterValues() {
+ gc();
+ return {'numberOfLiveDocuments': window.internals.numberOfLiveDocuments()};
+ }
+
+ var frame = document.createElement('frame');
+ document.body.appendChild(frame);
+ function loadSourceIntoIframe(src, callback) {
+ var originalSrc = frame.src;
+
+ frame.onload = function() {
+ if (frame.src === originalSrc)
+ return true;
+
+ callback();
+ return true;
+ };
+ frame.src = src;
+ }
+
+ function compareValues(countersBefore, countersAfter, tolerance) {
+ for (type in tolerance) {
+ var before = countersBefore[type];
+ var after = countersAfter[type];
+
+ if(after - before <= tolerance[type])
+ testPassed('The difference of counter "'+type+'" before and after the cycle is under the threshold of '+tolerance[type]+'.');
+ else
+ testFailed('counter "'+type+'" was '+before+' before and now '+after+' after the cycle. This exceeds the threshold of '+tolerance[type]+'.');
+ }
+ }
+
+ jsTestIsAsync = true;
+ if (!window.internals) {
+ debug("This test only runs on DumpRenderTree, as it requires existence of window.internals and cross-domain resource access check disabled.");
+ finishJSTest();
+ }
+
+ loadSourceIntoIframe('about:blank', function() {
+ // blank document loaded...
+ var countersBefore = getCounterValues();
+
+ loadSourceIntoIframe(src, function() {
+ // target document loaded...
+
+ loadSourceIntoIframe('about:blank', function() {
+ // target document unloaded...
+
+ var countersAfter = getCounterValues();
+ compareValues(countersBefore, countersAfter, tolerance);
+ finishJSTest();
+ });
+ });
+ });
+}
+
+function htmlToUrl(html) {
+ return 'data:text/html;charset=utf-8,' + html;
+}
+
+function grabScriptText(id) {
+ return document.getElementById(id).innerText;
+}
+
+// include fast/js/resources/js-test-post.js after this file.
« no previous file with comments | « LayoutTests/fast/dom/TreeWalker/TreeWalker-leak-document-expected.txt ('k') | Source/bindings/bindings.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698