mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
making sure the basic.sky test exposes the right (new) DOM now that text is always wrapped in a display:paragraph div. BUG=85 R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1083443002
15 lines
380 B
Plaintext
15 lines
380 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.previousSibling) + serializeNode(document.lastChild));
|
|
});
|
|
}
|
|
</script>
|