mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
7 lines
211 B
HTML
7 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>
|