Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: sky/tests/styles/inline-style.sky

Issue 1212163009: Port remaining Sky tests to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: add Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/tests/services/network.sky ('k') | sky/tests/styles/inline-style-crash.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « sky/tests/services/network.sky ('k') | sky/tests/styles/inline-style-crash.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698