11 display: block !important;
15 window
.onload = function () {
16 var test
= document
.getElementById('test');
17 test
.classList
.remove('block');
19 test
.classList
.add('block');
21 test
.classList
.remove('block');
23 test
.classList
.add('block');
25 if (window
.testRunner
)
26 testRunner
.dumpAsText();
29 <body><img src=
"../resources/50x50.gif"/>
30 <div id=
"test" class=
"block">Test passes if no assertion.
</div>