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

Unified Diff: LayoutTests/fast/dom/custom/registration-context-sharing.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/registration-context-sharing.html
diff --git a/LayoutTests/fast/dom/custom/registration-context-sharing.html b/LayoutTests/fast/dom/custom/registration-context-sharing.html
index 10a087fbc389f21442e466216885c269e0875608..d8ec2a6dea254ed160c04b97b6fadeba2ab51030 100644
--- a/LayoutTests/fast/dom/custom/registration-context-sharing.html
+++ b/LayoutTests/fast/dom/custom/registration-context-sharing.html
@@ -37,10 +37,10 @@ testUpgrade_oneDefinitionShouldUpgradeMultipleDocuments = function () {
assert_array_equals(
invocations,
- ['created document B upgrade candidate with prototype tagged U',
- 'created document A upgrade candidate with prototype tagged U'],
+ ['created document A upgrade candidate with prototype tagged U',
+ 'created document B upgrade candidate with prototype tagged U'],
'the created callback should have been called for both elements ' +
- 'in reverse creation order');
+ 'in creation order');
};
TestRegistrationContextSharing.prototype.

Powered by Google App Engine
This is Rietveld 408576698