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

Unified Diff: LayoutTests/fast/dom/custom/lifecycle-created-creation-api.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-creation-api.html
diff --git a/LayoutTests/fast/dom/custom/lifecycle-created-creation-api.html b/LayoutTests/fast/dom/custom/lifecycle-created-creation-api.html
index abaee90cbf33186a767e0134be0c87170e841d96..93e5a67372ec82bfcfbbdd737ac6dd34dc7b4b3b 100644
--- a/LayoutTests/fast/dom/custom/lifecycle-created-creation-api.html
+++ b/LayoutTests/fast/dom/custom/lifecycle-created-creation-api.html
@@ -54,7 +54,7 @@ window.callbacksCalled = [];
importedBar = document.importNode(foreignBar);
shouldBeTrue("importedBar.callbacksCalled");
shouldBeTrue("importedBar.firstChild.callbacksCalled");
-shouldBe("window.callbacksCalled", "['X-FOO', 'DIV']");
+shouldBe("window.callbacksCalled", "['DIV', 'X-FOO']");
window.callbacksCalled = [];
var toBeReplaced = document.createElement("div");

Powered by Google App Engine
This is Rietveld 408576698