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

Side by Side Diff: sky/tests/layout/margins-absolute.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698