| Index: LayoutTests/http/tests/htmlimports/resources/having-dynamic-child.html
|
| diff --git a/LayoutTests/http/tests/htmlimports/resources/having-dynamic-child.html b/LayoutTests/http/tests/htmlimports/resources/having-dynamic-child.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..61a8ae40b7008b9169d42d76cf48c04c4f15716f
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/htmlimports/resources/having-dynamic-child.html
|
| @@ -0,0 +1,10 @@
|
| +<script>
|
| +(function() {
|
| + var currentDocument = document.currentScript.ownerDocument;
|
| + var link = currentDocument.createElement('link');
|
| + link.id = 'dynamicLink'
|
| + link.rel = 'import';
|
| + link.href = 'import-slow-child.cgi';
|
| + currentDocument.head.appendChild(link);
|
| +})();
|
| +</script>
|
|
|