servo/tests/ref/setattribute_id_restyle_a.html
2014-09-08 20:21:42 -06:00

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>