8 <div id=
"element-container"></div>
9 <script src=
"../../resources/js-test.js"></script>
12 if (window
.testRunner
)
13 testRunner
.dumpAsText();
15 description("Test for Bug: 80736 - CSSStyleDeclaration.getPropertyValue() for 'border-radius' returns null when value is set");
17 var element
= document
.getElementById("element-container");
18 var style
= window
.getMatchedCSSRules(element
)[0].style
;
19 shouldBe("style.getPropertyValue('border-radius')","'5px'");
20 shouldBe("style.getPropertyValue('border-top-left-radius')","'5px'");
21 shouldBe("style.getPropertyValue('border-top-right-radius')","'5px'");
22 shouldBe("style.getPropertyValue('border-bottom-left-radius')","'5px'");
23 shouldBe("style.getPropertyValue('border-bottom-right-radius')","'5px'");