blob: e8fee0ea43af5b37425b65670aa1595782624c94 [file] [log] [blame] [edit]
<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>