haikuwebkit/LayoutTests/fast/css/style-sharing-inline-styles...

21 lines
560 B
HTML

<html lang=en>
<head>
<script src="../../resources/js-test-pre.js"></script>
<style>
.testclass { background-color: red; }
</style>
</head>
<body>
<div class=testclass>first div</div>
<style>
.testclass { background-color: green; }
</style>
<div class=testclass>second div</div>
<script>
description("Test that inline stylesheet does not confuse style sharing.");
shouldBe('window.getComputedStyle(document.getElementsByClassName("testclass")[1]).backgroundColor','"rgb(0, 128, 0)"');
</script>
<script src="../../resources/js-test-post.js"></script>
</body>