Home | History | Annotate | Download | only in HTMLLinkElement
      1 <body>
      2 <script>
      3 if (window.layoutTestController)
      4     layoutTestController.dumpAsText();
      5 </script>
      6 <html>
      7 <p>This test passes if it doesn't crash.</p>
      8 <div id="frag"></div>
      9 <script>
     10 // Fun with innerHTML.
     11 document.getElementById('frag').innerHTML = '<link href="prefetch.link" rel="prefetch">';
     12 
     13 // Fun with detached documents.
     14 var doc = document.implementation.createDocument('application/html+xml');
     15 var lnk = doc.createElement('link');
     16 lnk.setAttribute('rel', 'prefetch');
     17 lnk.setAttribute('href', 'prefetch.link');
     18 doc.documentElement.appendChild(lnk);
     19 </script>
     20 </html>
     21