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

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

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months 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/tests/lowlevel/home.sky ('k') | sky/tests/lowlevel/img.sky » ('j') | 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 <iframe id="removeMe" src="text.sky">Should not render</iframe>
4 <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>
5 <div style="height: 200px">Placeholder.</div> 5 <div style="height: 200px">Placeholder.</div>
6 <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 7
8 <script> 8 <script>
9 var removeMe = document.getElementById("removeMe"); 9 import "dart:sky";
10 removeMe.parentNode.removeChild(removeMe); 10
11 void main() {
12 document.getElementById("removeMe").remove();
13 }
11 </script> 14 </script>
12 </sky> 15 </sky>
OLDNEW
« no previous file with comments | « sky/tests/lowlevel/home.sky ('k') | sky/tests/lowlevel/img.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698