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

Unified Diff: sky/tests/lowlevel/style-specificity.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
Index: sky/tests/lowlevel/style-specificity.sky
diff --git a/sky/tests/lowlevel/style-specificity.sky b/sky/tests/lowlevel/style-specificity.sky
deleted file mode 100644
index e8fee0ea43af5b37425b65670aa1595782624c94..0000000000000000000000000000000000000000
--- a/sky/tests/lowlevel/style-specificity.sky
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-<style>
- #sandbox { color: red; }
- .blue { color: blue; }
-</style>
-<body>
- <div id="sandbox" class="blue">This should be blue.</div>
- <script>
- import "../resources/third_party/unittest/unittest.dart";
- import "../resources/unit.dart";
-
- import "dart:sky";
-
- main() {
- initUnit();
-
- test('should not exist', () {
- var sandbox = document.getElementById("sandbox");
- expect(window.getComputedStyle(sandbox)["color"],
- equals("rgb(0, 0, 255)"));
- });
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698