Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: sky/tests/lowlevel/iframe.sky

Issue 740383002: Unrevert "Sky: When an iframe element is removed, delete its mojo View." (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/html/HTMLIFrameElement.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <sky> 1 <sky>
2 <import src="../resources/dump-as-render-tree.sky" /> 2 <import src="../resources/dump-as-render-tree.sky" />
3 <iframe id="removeMe" src="text.sky">Should not render</iframe>
3 <div>This is an <iframe style="border-style: solid; border-width: 20px" src= "abarth.sky">iframe</iframe> element.</div> 4 <div>This is an <iframe style="border-style: solid; border-width: 20px" src= "abarth.sky">iframe</iframe> element.</div>
4 <div style="height: 200px">Placeholder.</div> 5 <div style="height: 200px">Placeholder.</div>
5 <div>Small iframe should render <iframe style="height: 40px" src="abarth.sky ">iframe</iframe> correctly.</div> 6 <div>Small iframe should render <iframe style="height: 40px" src="abarth.sky ">iframe</iframe> correctly.</div>
7
8 <script>
9 var removeMe = document.getElementById("removeMe");
10 removeMe.parentNode.removeChild(removeMe);
11 </script>
6 </sky> 12 </sky>
OLDNEW
« no previous file with comments | « sky/engine/core/html/HTMLIFrameElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698