Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

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

Issue 23009004: Process Custom Elements in post-order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 07455749edfcdb42a20ed21c82fb7eb4270edd45..dd7908590fd047648377997a7a9679b4bdade66f 100644
--- a/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
+++ b/LayoutTests/fast/dom/custom/lifecycle-created-innerHTML.html
@@ -23,7 +23,7 @@ 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", "['c', 'b', 'a']");
+shouldBe("window.callbacksCalled", "['a', 'b', 'c']");
// Testing nested elements
window.callbacksCalled = [];

Powered by Google App Engine
This is Rietveld 408576698