OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <html> | |
3 <style> | |
4 #target { | |
5 border-radius: 5px; | |
6 } | |
7 </style> | |
8 <div id="target"></div> | |
9 <script src="../../resources/js-test.js"></script> | |
10 | |
11 <script> | |
12 if (window.testRunner) | |
13 testRunner.dumpAsText(); | |
14 | |
15 description("Test for Bug 407012: border-radius shorthand is always splitted to longhand properties in CSSStyleRule.cssText."); | |
16 | |
17 var element = document.getElementById("target"); | |
18 shouldBe("document.styleSheets[0].rules[0].cssText","'#target { border-radius: 5 px; }'"); | |
19 </script> | |
20 | |
21 </html> | |
OLD | NEW |