mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
12 lines
249 B
HTML
12 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>
|