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

Side by Side Diff: LayoutTests/fast/box-sizing/css-table-collapse.html

Issue 888743002: Force unitless data-expected attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Redo percentage-height-when-height-specified-by-top-bottom.html onload change Created 5 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 </head> 4 </head>
5 <body> 5 <body>
6 <style> 6 <style>
7 .table { 7 .table {
8 display: table; 8 display: table;
9 border-collapse: collapse; 9 border-collapse: collapse;
10 border: 25px solid green; 10 border: 25px solid green;
(...skipping 10 matching lines...) Expand all
21 height: 50px; 21 height: 50px;
22 width: 50px; 22 width: 50px;
23 } 23 }
24 </style> 24 </style>
25 <script src="../../resources/check-layout.js"></script> 25 <script src="../../resources/check-layout.js"></script>
26 <script> 26 <script>
27 window.onload = function () { 27 window.onload = function () {
28 checkLayout(".table"); 28 checkLayout(".table");
29 } 29 }
30 </script> 30 </script>
31 <div class="table" data-expected-height="85px"> 31 <div class="table" data-expected-height="85">
32 <div class="tbody"> 32 <div class="tbody">
33 <div class="tr"> 33 <div class="tr">
34 <div class="td"> 34 <div class="td">
35 <div class="block"></div> 35 <div class="block"></div>
36 </div> 36 </div>
37 </div> 37 </div>
38 </div> 38 </div>
39 </div> 39 </div>
40 <div style="top: 200px;" class="table" data-expected-height="85px"> 40 <div style="top: 200px;" class="table" data-expected-height="85">
41 <div class="tbody"> 41 <div class="tbody">
42 <div class="tr"> 42 <div class="tr">
43 <div class="td"> 43 <div class="td">
44 <div class="block"></div> 44 <div class="block"></div>
45 </div> 45 </div>
46 </div> 46 </div>
47 </div> 47 </div>
48 </div> 48 </div>
49 <div style="bottom: 100px;" class="table" data-expected-height="85px"> 49 <div style="bottom: 100px;" class="table" data-expected-height="85">
50 <div class="tbody"> 50 <div class="tbody">
51 <div class="tr"> 51 <div class="tr">
52 <div class="td"> 52 <div class="td">
53 <div class="block"></div> 53 <div class="block"></div>
54 </div> 54 </div>
55 </div> 55 </div>
56 </div> 56 </div>
57 </div> 57 </div>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698