2 <script src=
"../../../resources/js-test.js"></script>
3 <script src=
"testutils.js"></script>
9 // The controlling parent frame
10 description('Tests destroying a context during attributeChanged callback.');
12 successfullyParsed
= true;
17 var proto
= Object
.create(HTMLElement
.prototype);
18 proto
.createdCallback = function () {
20 this.previousSibling
.setAttribute('tick', '...');
22 proto
.attributeChangedCallback = function (name
) {
24 this.previousSibling
.setAttribute('boom', 'tsk');
29 var A
= document
.registerElement('x-a', {prototype: proto
});
31 '<x-a id="t"></x-a>' +
32 '<x-a id="u"></x-a>' +
33 '<x-a id="v"></x-a>' +