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

Unified Diff: LayoutTests/fast/dom/custom/element-upgrade.html

Issue 69533003: Upgrade parser-created Custom Elements in creation order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bring patch to head. Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/custom/element-upgrade-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/custom/element-upgrade.html
diff --git a/LayoutTests/fast/dom/custom/element-upgrade.html b/LayoutTests/fast/dom/custom/element-upgrade.html
index cface893738ebe617c5f50ec95ec0a7ff4cd6588..19775d0c2e493d34508b3d661b3ebe10e773ee81 100644
--- a/LayoutTests/fast/dom/custom/element-upgrade.html
+++ b/LayoutTests/fast/dom/custom/element-upgrade.html
@@ -52,7 +52,7 @@ var upgradedOrder = [];
var protoE = Object.create(HTMLElement.prototype);
protoE.createdCallback = function() { upgradedOrder.push(this.id); };
document.register('x-e', {prototype: protoE});
-shouldBe('upgradedOrder', '["e2","e1","e3","e4","e5"]');
+shouldBe('upgradedOrder', '["e1","e2","e3","e4","e5"]');
successfullyParsed = true;
</script>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/custom/element-upgrade-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698