Index: sky/tests/styles/border-parsing.sky |
diff --git a/sky/tests/styles/border-parsing.sky b/sky/tests/styles/border-parsing.sky |
deleted file mode 100644 |
index 79bf1bb31a44e6a21037357d85612dc404c78799..0000000000000000000000000000000000000000 |
--- a/sky/tests/styles/border-parsing.sky |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<html> |
-<foo /> |
-<script> |
-import "../resources/third_party/unittest/unittest.dart"; |
-import "../resources/unit.dart"; |
- |
-import "dart:sky"; |
- |
-void main() { |
- initUnit(); |
- |
- test('should render', () { |
- var foo = document.querySelector('foo'); |
- foo.setAttribute('style', 'border: 1px solid red'); |
- expect(foo.style["border"], equals('1px solid rgb(255, 0, 0)')); |
- }); |
-} |
-</script> |
-</html> |