Files
engine/tests/framework/basic.sky
T
Hixie 02045e37a4 [Effen] Move 'flex' out of CSS also. (mark II)
This introduces a new kind of ContentNode similar to Style but which
instead of changing the styles that apply to the node, provides new
settings to apply to the "parentData" structure.

R=eseidel@chromium.org

Review URL: https://codereview.chromium.org/1122413006
2015-05-12 10:40:43 -07:00

21 lines
478 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(() {
var result = serializeNode(document.lastChild.previousSibling) + serializeNode(document.lastChild);
try {
internals.notifyTestComplete(result);
} catch (e) {
print(e);
print(result);
}
});
}
</script>