Index: sky/tests/styles/inline-style.sky |
diff --git a/sky/tests/styles/inline-style.sky b/sky/tests/styles/inline-style.sky |
deleted file mode 100644 |
index 65091ba5b3b5756e3d1b3db549c4188b2134f3c3..0000000000000000000000000000000000000000 |
--- a/sky/tests/styles/inline-style.sky |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<html> |
-<foo /> |
-<script> |
-import "../resources/third_party/unittest/unittest.dart"; |
-import "../resources/unit.dart"; |
- |
-import "dart:sky"; |
- |
-void main() { |
- initUnit(); |
- |
- test('should be settable using "style" attribute', () { |
- var foo = document.querySelector('foo'); |
- foo.setAttribute('style', 'color: red'); |
- |
- |
- expect(foo.getAttribute('style'), equals('color: red')); |
- expect(foo.style["color"], equals('rgb(255, 0, 0)')); |
- expect(window.getComputedStyle(foo)["color"], equals('rgb(255, 0, 0)')); |
- }); |
-} |
-</script> |
-</html> |