mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Also add a test, this checks nested Shadow DOM and <content> with and without select. R=ojan@chromium.org Review URL: https://codereview.chromium.org/725763003
11 lines
312 B
Plaintext
11 lines
312 B
Plaintext
<sky>
|
|
<import src="/sky/examples/flights-app/flights-app.sky" />
|
|
<script>
|
|
addEventListener("load", function() {
|
|
var app = document.createElement("flights-app");
|
|
document.querySelector("sky").appendChild(app);
|
|
internals.notifyTestComplete(internals.renderTreeAsText());
|
|
});
|
|
</script>
|
|
</sky>
|