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

Side by Side Diff: LayoutTests/fast/css-intrinsic-dimensions/height-tables-collapsed-expected.html

Issue 13674002: Support intrinsic values for height, min-height and max-height (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: CSS table tests Created 7 years, 8 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
3 <style>
4 .item { height: 50px; width: 50px; border: 1px solid blue; }
5
6 .container { height: 100px; border: 5px solid pink; }
7 table { border: 2px solid red; border-collapse: collapse; }
8 td { border: 2px solid green; }
9 </style>
10
11 <table>
12 <td>
13 <div class="item"></div>
14 </td>
15 </table>
16
17 <table>
18 <td>
19 <div class="item"></div>
20 </td>
21 </table>
22
23 <div class="container">
24 <table style="height: 100%; box-sizing: border-box;">
25 <td>
26 <div class="item"></div>
27 </td>
28 </table>
29 </div>
30
31
32 <table class="container">
33 <td style="height: 79px;">
34 <div class="item"></div>
35 </td>
36 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698