flutter_flutter/tests/framework/flights-app.sky
Elliott Sprehn 8409c0e386 Add a version of flights that's made of components.
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
2014-11-14 15:00:12 -08:00

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>