| 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
|
|
|