mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
13 lines
249 B
HTML
13 lines
249 B
HTML
<style>
|
|
#foo { background-color: #FF0000; }
|
|
</style>
|
|
|
|
<div>hello</div>
|
|
<div id="">world</div>
|
|
|
|
<script>
|
|
var divs = document.getElementsByTagName('div');
|
|
divs[0].setAttribute('id', 'foo');
|
|
divs[1].setAttribute('id', 'foo');
|
|
</script>
|