blob: 8f00996bbef3816fc8b16ddd7680e41411592f86 [file] [log] [blame]
<html>
<foo />
<script>
import "../resources/third_party/unittest/unittest.dart";
import "../resources/unit.dart";
import "dart:sky";
void main() {
initUnit();
test('should render', () {
var foo = document.querySelector('foo');
foo.setAttribute('style', 'border: 1px solid red');
expect(foo.style.getPropertyValue("border"), equals('1px solid rgb(255, 0, 0)'));
});
}
</script>
</html>