servo/tests/ref/append_style_b.html
2014-09-08 20:21:42 -06:00

6 lines
211 B
HTML

<div id="hello">this is the story of a girl</div>
<script>
var style = document.createElement('style');
style.textContent = "#hello { background-color: blue; }"
document.head.appendChild(style);
</script>