mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This reverts commit acec66c735d6a40d3da3e0e9a6ee5f278bdfe043. Scott thinks he fixed the crash. BUG=434555 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/740383002
13 lines
567 B
Plaintext
13 lines
567 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>
|
|
var removeMe = document.getElementById("removeMe");
|
|
removeMe.parentNode.removeChild(removeMe);
|
|
</script>
|
|
</sky>
|