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

Unified Diff: LayoutTests/http/tests/htmlimports/import-custom-element-order.html

Issue 288323004: HTML Imports: Get rid of needsProcessOrStop() from dom/custom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/htmlimports/import-custom-element-order.html
diff --git a/LayoutTests/http/tests/htmlimports/import-custom-element-order.html b/LayoutTests/http/tests/htmlimports/import-custom-element-order.html
index 00c93f8f9663cbdb2085bfba59471f79e616690c..fcb0b4a1cba2e7e09f6b8c43b1b2ec06223ea2ff 100644
--- a/LayoutTests/http/tests/htmlimports/import-custom-element-order.html
+++ b/LayoutTests/http/tests/htmlimports/import-custom-element-order.html
@@ -15,13 +15,13 @@ var t2 = async_test('Custom elements in async imports wait preceeding sync impor
var latch = new ImportTestLatch(function() {
window.setTimeout(function() {
t1.step(function() {
- assert_array_equals(['hello-slow', 'hello-1', 'hello-2'], Hello.ids);
+ assert_array_equals(['hello-slow', 'hello-2', 'hello-1'], Hello.ids);
t1.done();
});
t2.step(function() {
var Bye = registerTestingCustomElement('x-bye');
- assert_array_equals(['bye-slow', 'bye-1', 'bye-2'], Bye.ids);
+ assert_array_equals(['bye-slow', 'bye-2', 'bye-1'], Bye.ids);
t2.done();
});
}, 0);
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698