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

Side by Side Diff: sky/tests/lowlevel/home.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/filters-expected.sky ('k') | sky/tests/lowlevel/iframe.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 <div> 1 <div>
2 <style> 2 <style>
3 .h1 { font-size: 2em; margin: 1em; } 3 .h1 { font-size: 2em; margin: 1em; }
4 .p { margin: 0.5em 1em; color: #bcd8f5; font-weight: 900; } 4 .p { margin: 0.5em 1em; color: #bcd8f5; font-weight: 900; }
5 </style> 5 </style>
6 <div class="h1">about:blank</div> 6 <div class="h1">about:blank</div>
7 <div class="p">Welcome to Sky!</div> 7 <div class="p">Welcome to Sky!</div>
8 <script> 8 <script>
9 import "dart:sky" as sky;
10 import "dart:sky.internals" as internals;
11
9 // Don't use dump-as-render-tree.sky, we want a test with no imports. 12 // Don't use dump-as-render-tree.sky, we want a test with no imports.
10 window.addEventListener('load', function() { 13 void main() {
11 internals.notifyTestComplete(internals.renderTreeAsText()); 14 sky.window.addEventListener('load', (_) =>
12 }); 15 internals.notifyTestComplete(internals.renderTreeAsText()));
16 }
13 </script> 17 </script>
14 </div> 18 </div>
OLDNEW
« no previous file with comments | « sky/tests/lowlevel/filters-expected.sky ('k') | sky/tests/lowlevel/iframe.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698