10 background-color: silver;
17 background-color: green;
20 #target.changed, #target:hover {
21 background-color: blue;
24 <script src=
"resources/text-based-repaint.js"></script>
26 function repaintTest() {
27 document
.getElementById('target').classList
.add('changed');
31 <body onload=
"runRepaintTest();">
32 <div class=
"container">
33 <div id=
"target">Hidden Text
</div>