OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset=utf8> | 4 <meta charset=utf8> |
5 <script src="../fast/js/resources/js-test-pre.js"></script> | 5 <script src="../resources/js-test.js"></script> |
6 <style> | 6 <style> |
7 @supports (width: 0) { | 7 @supports (width: 0) { |
8 s { width: 0; } | 8 s { width: 0; } |
9 @supports (width: 1) { | 9 @supports (width: 1) { |
10 s { color: #000; } | 10 s { color: #000; } |
11 @import url("../fast/cssom/resources/import.css"); | 11 @import url("../fast/cssom/resources/import.css"); |
12 @charset "UTF-8"; | 12 @charset "UTF-8"; |
13 @namespace ""; | 13 @namespace ""; |
14 } | 14 } |
15 } | 15 } |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 shouldEvaluateTo("rules[0].cssRules.length", 2); | 122 shouldEvaluateTo("rules[0].cssRules.length", 2); |
123 shouldBe("rules[0].cssRules[0].type", "CSSRule.STYLE_RULE"); | 123 shouldBe("rules[0].cssRules[0].type", "CSSRule.STYLE_RULE"); |
124 shouldBe("rules[0].cssRules[1].type", "CSSRule.SUPPORTS_RULE"); | 124 shouldBe("rules[0].cssRules[1].type", "CSSRule.SUPPORTS_RULE"); |
125 shouldEvaluateTo("rules[0].cssRules[1].cssRules.length", 1); | 125 shouldEvaluateTo("rules[0].cssRules[1].cssRules.length", 1); |
126 shouldBe("rules[0].cssRules[1].cssRules[0].type", "CSSRule.STYLE_RULE"); | 126 shouldBe("rules[0].cssRules[1].cssRules[0].type", "CSSRule.STYLE_RULE"); |
127 | 127 |
128 </script> | 128 </script> |
129 </body> | 129 </body> |
130 </html> | 130 </html> |
131 | 131 |
OLD | NEW |