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

Side by Side Diff: sky/tests/layout/margins.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 }
11 </style>
12 <div class="root" data-expected-height="100" data-total-y="5" style="backgroun d-color: pink">
13 <!-- TODO(ojan): These numbers are right, but the test fails because we appe ar to have
14 broken offsetTop to not include the parent's margin-top. -->
15 <div class="child" data-total-y="15" style="background-color: salmon"></div>
16 <div class="child" data-total-y="65" style="background-color: papayawhip"></ div>
17 </div>
18
19 <script>
20 checkLayout('.root');
21 </script>
22 </sky>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698