2 <script src=
"../../../resources/js-test.js"></script>
4 .a { width:
100px; height:
100px; background-color: green; }
9 var root
= document
.getElementById('root');
10 var mid
= document
.createElement('div');
11 root
.appendChild(mid
);
13 inner
= document
.createElement('div');
14 mid
.appendChild(inner
);
17 inner
.classList
.add('a');
20 root
.appendChild(mid
);
22 inner
.classList
.remove('a');
24 shouldBe('getComputedStyle(inner).backgroundColor', '"rgba(0, 0, 0, 0)"');