OLD | NEW |
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 Loading... |
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> |
OLD | NEW |