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

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

Issue 2309893002: Revert "Percent height content should respect the fixed height of its containing cell" (Closed)
Patch Set: Created 4 years, 3 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 <!DOCTYPE html>
2 <style>
3 td {
4 width: 50px;
5 height: 50px;
6 padding: 9px;
7 box-sizing: border-box;
8 border: 9px solid lightblue;
9 }
10 #div {
11 height: 100%;
12 }
13 </style>
14 <table style="border-collapse:collapse" id="table" data-expected-height=59 data- expected-width=59>
15 <tr id="row">
16 <td><div id="div" style="background:black" data-expected-height=23 data- expected-width=23></div></td>
17 </tr>
18 </table>
19 <script src="../../resources/check-layout.js"></script>
20 <p> crbug.com/627305: Percent height content in a border-box sized cell with bor der and a computed height should use the height of the cell. </p>
21 <div id="output"></div>
22 <script>
23 checkLayout('#table', output);
24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698