| Index: LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
|
| diff --git a/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html b/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
|
| index 756659663945a139a9802f0ea1cbef2b06a0f844..07455749edfcdb42a20ed21c82fb7eb4270edd45 100644
|
| --- a/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
|
| +++ b/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
|
| @@ -23,12 +23,12 @@ document.register("x-baz", { prototype: Object.create(HTMLElement.prototype, { c
|
| // Testing element siblings
|
| window.callbacksCalled = [];
|
| container.innerHTML = "<x-foo id='a'></x-foo><div id='b' is='x-bar'></div><x-baz id='c'></x-baz>";
|
| -shouldBe("window.callbacksCalled", "['a', 'b', 'c']");
|
| +shouldBe("window.callbacksCalled", "['c', 'b', 'a']");
|
|
|
| // Testing nested elements
|
| window.callbacksCalled = [];
|
| container.innerHTML = "<x-foo id='a'><div id='b' is='x-bar'><x-baz id='c'></x-baz></div></x-foo>";
|
| -shouldBe("window.callbacksCalled", "['a', 'b', 'c']");
|
| +shouldBe("window.callbacksCalled", "['c', 'b', 'a']");
|
| </script>
|
| <script src="../../js/resources/js-test-post.js"></script>
|
| </body>
|
|
|