Hixie f46c5d49d4 Fix the test broken by https://codereview.chromium.org/1078973002 by
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
2015-04-10 15:04:54 -07:00

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>