blob: db380c752b2068a8fb1f4a53d9eaa23944365ab9 [file] [log] [blame]
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<html>
<p>This test passes if it doesn't crash.</p>
<div id="frag"></div>
<script>
// Fun with innerHTML.
document.getElementById('frag').innerHTML = '<link href="prefetch.link" rel="prefetch">';
// Fun with detached documents.
var doc = document.implementation.createDocument('application/html+xml', 'test');
var lnk = doc.createElement('link');
lnk.setAttribute('rel', 'prefetch');
lnk.setAttribute('href', 'prefetch.link');
doc.documentElement.appendChild(lnk);
</script>
</html>