3 <script src=
"../../resources/js-test.js"></script>
5 .testclass { background-color: red; }
9 <div class=testclass
>first div
</div>
11 .testclass { background-color: green; }
13 <div class=testclass
>second div
</div>
16 description("Test that inline stylesheet does not confuse style sharing.");
17 shouldBe('window.getComputedStyle(document.getElementsByClassName("testclass")[1]).backgroundColor','"rgb(0, 128, 0)"');