5 testRunner
.dumpAsText();
10 function define(name
, child
) {
11 var prototype = Object
.create(HTMLElement
.prototype);
12 prototype.createdCallback = function() {
15 document
.body
.appendChild(document
.createTextNode("PASS."))
16 document
.createElement(child
);
18 document
.registerElement(name
, {prototype: prototype});
22 for (var i
=0; i
< count
; i
++) {
23 define(prefix
+ i
, prefix
+ (i
+1));
27 Tests that we can recurse up to
43 times between V8 and Blink.
28 You should see PASS below, and no stack size exceeded RangeError.