Chromium Code Reviews

Unified Diff: LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html

Issue 17707002: Implement Custom Elements inserted and removed callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html
diff --git a/LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html b/LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html
index 0e79b3b32be892181afeddc0c0b358ce8c478b31..d080b201127b5e29aec340b223849ef27fb970d7 100644
--- a/LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html
+++ b/LayoutTests/fast/dom/custom/lifecycle-ready-innerHTML.html
@@ -26,7 +26,7 @@ container.innerHTML = '<x-foo id="a"></x-foo>' +
shouldBe('window.callbacksCalled', '[]');
</script>
<script>
-shouldBe('window.callbacksCalled', '[\'a\', \'b\', \'c\']');
+shouldBe('window.callbacksCalled', '[\'c\', \'b\', \'a\']');
// Testing nested elements
window.callbacksCalled = [];
@@ -34,7 +34,7 @@ container.innerHTML = '<x-foo id="a"><div id="b" is="x-bar"><x-foo id="c"></x-fo
shouldBe('window.callbacksCalled', '[]');
</script>
<script>
-shouldBe('window.callbacksCalled', '[\'a\', \'b\', \'c\']');
+shouldBe('window.callbacksCalled', '[\'c\', \'b\', \'a\']');
successfullyParsed = true;
</script>

Powered by Google App Engine