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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/percent-height-border-box-content-in-cell-2.html

Issue 2535173006: Percent height border-box content should get correct height in percent height cells (Closed)
Patch Set: bug 669867 Created 4 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .cell { display:table-cell; }
4 .div { height: 100%; display: inline-block; box-sizing: border-box; border: 2px solid black; padding: 2px; font: 20px Ahem;}
5 </style>
6 <div class="cell">
7 <div class="div" data-expected-height=28>Text</div>
8 </div>
9 <script src="../../resources/check-layout.js"></script>
10 <p> crbug.com/669687: Percent height border-box replaced content in a cell gets the correct height. </p>
11 <div id="output"></div>
12 <script>
13 checkLayout('.div', output);
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698