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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-with-border-in-fr.html

Issue 1496513002: [css-grid] Fix the height computation of grid items with borders (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | third_party/WebKit/Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 .grid {
5 display: grid;
6 grid: 1fr / 1fr;
7 font: 50px/1 Ahem;
8 border: 5px dashed magenta;
9 width: 150px;
10 height: 150px;
11 }
12 .item {
13 border: 50px solid rgba(0, 255, 250, 0.5);
14 }
15 </style>
16 <script src="../../resources/testharness.js"></script>
17 <script src="../../resources/testharnessreport.js"></script>
18 <script src="../../resources/check-layout-th.js"></script>
19
20 <body onload="checkLayout('.grid')">
21 <div id=log></div>
22
23 <div class="grid fixedSizeGrid" data-expected-width="160" data-expected-height=" 160">
jfernandez 2015/12/02 14:32:18 fixedSizedGrid is not defined..
24 <div class="item" data-expected-width="150" data-expected-height="150">X</di v>
jfernandez 2015/12/02 14:32:18 I think we might measure the grid item without the
svillar 2015/12/03 09:18:30 Yeah I'll add data-expected-client-* to the tests.
25 </div>
26
27 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698