2 <!-- crbug.com/345114: Adding and removing a style with an @import at page load causes the page to never render.-->
5 var s
= document
.createElement('style');
6 s
.textContent
= "@import url('resources/red.css');";
7 document
.head
.appendChild(s
);
8 s
.parentNode
.removeChild(s
);