| Index: LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.html
|
| diff --git a/LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.html b/LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.html
|
| index 356855884645d45f653344700098e928666b30d9..d25464553fc9cdd3a42872a78bcbcd3397d72a8b 100644
|
| --- a/LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.html
|
| +++ b/LayoutTests/fast/dom/custom/registration-context-delete-during-callback-recursion.html
|
| @@ -17,11 +17,11 @@ if (fork()) {
|
| var proto = Object.create(HTMLElement.prototype);
|
| proto.createdCallback = function () {
|
| if (n++ == 2)
|
| - this.nextSibling.setAttribute('tick', '...');
|
| + this.previousSibling.setAttribute('tick', '...');
|
| };
|
| proto.attributeChangedCallback = function (name) {
|
| if (name == 'tick')
|
| - this.nextSibling.setAttribute('boom', 'tsk');
|
| + this.previousSibling.setAttribute('boom', 'tsk');
|
| if (name == 'boom')
|
| destroyContext();
|
| };
|
|
|