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

Unified Diff: LayoutTests/http/tests/htmlimports/resources/import-slow-custom-element-hello.cgi

Issue 249563003: REGRESSION(r171966): Custom elements in async imports don't get upgrade. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/http/tests/htmlimports/resources/import-slow-custom-element-hello.cgi
diff --git a/LayoutTests/http/tests/htmlimports/resources/import-slow-custom-element-hello.cgi b/LayoutTests/http/tests/htmlimports/resources/import-slow-custom-element-hello.cgi
new file mode 100755
index 0000000000000000000000000000000000000000..4093c38e39966881e15be9a1d496a054f0cdc095
--- /dev/null
+++ b/LayoutTests/http/tests/htmlimports/resources/import-slow-custom-element-hello.cgi
@@ -0,0 +1,10 @@
+#!/usr/bin/perl -wT
+use strict;
+use Time::HiRes qw(sleep);
+
+print "Content-Type: text/html\n\n";
+sleep 1.0;
+print <<EOF
+<x-hello id="hello-slow"></x-hello>
+<x-bye id="bye-slow"></x-bye>
+EOF

Powered by Google App Engine
This is Rietveld 408576698