blob: 9dc207c01aebef4373b40c0a69adf55b0b23cbcf [file] [log] [blame]
<import src="../resources/run-after-display.sky" />
<script>
import 'basic.dart';
import 'dart:sky';
import '../resources/dom_serializer.dart';
import 'dart:sky.internals' as internals;
void main() {
new TestApp();
runAfterDisplay(() {
document.firstChild.remove();
document.firstChild.remove();
var result = serializeNode(document);
try {
internals.notifyTestComplete(result);
} catch (e) {
print(e);
print(result);
}
});
}
</script>