mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL flips the switch to make Sky use Dart. TBR=eseidel@chromium.org BUG=454613 Review URL: https://codereview.chromium.org/922893002
16 lines
557 B
Plaintext
16 lines
557 B
Plaintext
<sky>
|
|
<import src="../resources/dump-as-render-tree.sky"/>
|
|
<iframe id="removeMe" src="text.sky">Should not render</iframe>
|
|
<div>This is an <iframe style="border-style: solid; border-width: 20px" src="abarth.sky">iframe</iframe> element.</div>
|
|
<div style="height: 200px">Placeholder.</div>
|
|
<div>Small iframe should render <iframe style="height: 40px" src="abarth.sky">iframe</iframe> correctly.</div>
|
|
|
|
<script>
|
|
import "dart:sky";
|
|
|
|
void main() {
|
|
document.getElementById("removeMe").remove();
|
|
}
|
|
</script>
|
|
</sky>
|