mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
02045e37a4
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
21 lines
478 B
Plaintext
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>
|