OLD | NEW |
---|---|
(Empty) | |
1 <sky> | |
2 <import src="../resources/check-layout.sky" as="checkLayout" /> | |
3 <style> | |
4 .root { | |
5 margin: 5px; | |
6 } | |
7 .child { | |
8 margin: 10px; | |
9 height: 30px; | |
10 position: absolute; | |
11 } | |
12 </style> | |
13 <div class="root" data-expected-height="0" data-total-y="5" style="background- color: pink"> | |
14 <div class="child" data-total-y="15" style="background-color: salmon"></div> | |
15 </div> | |
16 | |
17 <script> | |
18 checkLayout('.root'); | |
19 </script> | |
20 </sky> | |
21 | |
OLD | NEW |