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

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

Issue 18258003: Pow __proto__, sock :unresolved, and clunk the created callback at once. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Try to be nicer to MSVC. Created 7 years, 5 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 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>

Powered by Google App Engine
This is Rietveld 408576698