Chromium Code Reviews| 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..35c38e7ccd373a3fdc2dfd320782b4c93e860c7e |
| --- /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 0.2; |
| +print <<EOF |
| +<x-hello id="hello-slow"></x-hello> |
| +<x-bye id="bye-slow"></x-bye> |
| +EOF |