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

Side by Side Diff: sky/tests/lowlevel/layers.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/img.sky ('k') | sky/tests/lowlevel/layers-expected.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 2
3 <import src="../resources/run-after-display.sky" as="runAfterDisplay" /> 3 <import src="../resources/run-after-display.sky" />
4 <style> 4 <style>
5 sky { 5 sky {
6 padding: 10px; 6 padding: 10px;
7 } 7 }
8 div { 8 div {
9 width: 50px; 9 width: 50px;
10 height: 50px; 10 height: 50px;
11 white-space: nowrap; 11 white-space: nowrap;
12 } 12 }
13 </style> 13 </style>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 <div style="position: absolute; bottom: 50px;"> 61 <div style="position: absolute; bottom: 50px;">
62 Clip-path 62 Clip-path
63 <div style="background-color: pink; -webkit-clip-path: circle(25px at 25px 25p x);"> 63 <div style="background-color: pink; -webkit-clip-path: circle(25px at 25px 25p x);">
64 <div style="background-color: salmon; -webkit-clip-path: circle(25px at 35px 35px);"> 64 <div style="background-color: salmon; -webkit-clip-path: circle(25px at 35px 35px);">
65 <div style="background-color: papayawhip; -webkit-clip-path: circle(25px a t 45px 45px);"></div> 65 <div style="background-color: papayawhip; -webkit-clip-path: circle(25px a t 45px 45px);"></div>
66 </div> 66 </div>
67 </div> 67 </div>
68 </div> 68 </div>
69 69
70 <script> 70 <script>
71 runAfterDisplay(function() { 71 import "dart:sky.internals" as internals;
72 internals.notifyTestComplete(""); 72
73 }); 73 void main() {
74 runAfterDisplay(() {
75 internals.notifyTestComplete("");
76 });
77 }
74 </script> 78 </script>
75 79
76 </sky> 80 </sky>
OLDNEW
« no previous file with comments | « sky/tests/lowlevel/img.sky ('k') | sky/tests/lowlevel/layers-expected.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698