summaryrefslogtreecommitdiffstats
path: root/js/src/devtools/gc-ubench/benchmarks/textNodes.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/devtools/gc-ubench/benchmarks/textNodes.js')
-rw-r--r--js/src/devtools/gc-ubench/benchmarks/textNodes.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/devtools/gc-ubench/benchmarks/textNodes.js b/js/src/devtools/gc-ubench/benchmarks/textNodes.js
new file mode 100644
index 000000000..257e5f726
--- /dev/null
+++ b/js/src/devtools/gc-ubench/benchmarks/textNodes.js
@@ -0,0 +1,23 @@
+window.tests.set('textNodes', (function() {
+var garbage = [];
+var garbageIndex = 0;
+return {
+ description: "var foo = [ textNode, textNode, ... ]",
+
+ load: (N) => { garbage = new Array(N); },
+ unload: () => { garbage = []; garbageIndex = 0; },
+
+ defaultGarbagePerFrame: "100K",
+ defaultGarbageTotal: "8",
+
+ makeGarbage: (N) => {
+ var a = [];
+ for (var i = 0; i < N; i++) {
+ a.push(document.createTextNode("t" + i));
+ }
+ garbage[garbageIndex++] = a;
+ if (garbageIndex == garbage.length)
+ garbageIndex = 0;
+ }
+};
+})());