mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
15 lines
328 B
Plaintext
15 lines
328 B
Plaintext
<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(() {
|
|
internals.notifyTestComplete(serializeNode(document.lastChild));
|
|
});
|
|
}
|
|
</script>
|