mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
6 lines
211 B
HTML
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>
|