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

Side by Side 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, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <style>
3 #sandbox { color: red; }
4 .blue { color: blue; }
5 </style>
6 <body>
7 <div id="sandbox" class="blue">This should be blue.</div>
8 <script>
9 import "../resources/third_party/unittest/unittest.dart";
10 import "../resources/unit.dart";
11
12 import "dart:sky";
13
14 main() {
15 initUnit();
16
17 test('should not exist', () {
18 var sandbox = document.getElementById("sandbox");
19 expect(window.getComputedStyle(sandbox)["color"],
20 equals("rgb(0, 0, 255)"));
21 });
22 }
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698