| OLD | NEW |
| 1 #library('CSSRuleListTest'); | 1 #library('CSSRuleListTest'); |
| 2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/unittest.dart'); |
| 3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/html_config.dart'); |
| 4 #import('dart:html'); | 4 #import('dart:html'); |
| 5 | 5 |
| 6 main() { | 6 main() { |
| 7 | 7 |
| 8 useHtmlConfiguration(); | 8 useHtmlConfiguration(); |
| 9 | 9 |
| 10 test("ClientRectList test", () { | 10 test("ClientRectList test", () { |
| 11 var sheet = document.styleSheets[0]; | 11 var sheet = document.styleSheets[0]; |
| 12 List<CSSRule> rulesList = sheet.cssRules; | 12 List<CSSRule> rulesList = sheet.cssRules; |
| 13 Expect.isTrue(rulesList is List<CSSRule>); | 13 expect(rulesList, new isInstanceOf<List<CSSRule>>('List<CSSRule>')); |
| 14 }); | 14 }); |
| 15 } | 15 } |
| OLD | NEW |