<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["border"], equals('1px solid rgb(255, 0, 0)')); | |
}); | |
} | |
</script> | |
</html> |