mirror of
https://github.com/servo/servo.git
synced 2025-06-19 22:59:03 +01:00
9 lines
186 B
HTML
9 lines
186 B
HTML
<!doctype html>
|
|
<style>
|
|
div { height: 2em; background: green; }
|
|
#id { background: red; }
|
|
</style>
|
|
<div></div>
|
|
<script>
|
|
document.body.firstChild.setAttributeNS("", "ID", "id");
|
|
</script>
|