Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / htmlimports / resources / having-dynamic-child.html
1 <script>
2 (function() {
3     var currentDocument = document.currentScript.ownerDocument;
4     var link = currentDocument.createElement('link');
5     link.id = 'dynamicLink'
6     link.rel = 'import';
7     link.href = 'import-slow-child.cgi';
8     currentDocument.head.appendChild(link);
9 })();
10 </script>