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