4 div { width:
100px; height:
100px; background-color: red; }
7 div#green { background-color: green; }
12 Tests that re-inserting a <style> element that was created by the
13 parser applies its stylesheet.
15 <div id=
"green"></div>
17 var style
= document
.getElementById("style");
18 var head
= style
.parentNode
;
19 head
.removeChild(style
);
20 head
.appendChild(style
);