Add reftest for setAttribute restyling

This commit is contained in:
Jacob Parker 2014-04-07 23:18:13 -04:00
parent 7541b57526
commit 62227009b0
3 changed files with 19 additions and 0 deletions

View file

@ -65,3 +65,4 @@
== background_repeat_y_a.html background_repeat_y_b.html
== background_repeat_none_a.html background_repeat_none_b.html
== background_repeat_both_a.html background_repeat_both_b.html
== setattribute_id_restyle_a.html setattribute_id_restyle_b.html

View file

@ -0,0 +1,12 @@
<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>

View file

@ -0,0 +1,6 @@
<style>
#foo { background-color: #FF0000; }
</style>
<div id="foo">hello</div>
<div id="foo">world</div>