OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 td { padding: 0px; } | |
4 table { border-spacing: 0px; } | |
5 .yellow { background-color: yellow; } | |
6 .red { background-color: red; } | |
7 .green { background-color: green; } | |
8 </style> | |
9 </head> | |
10 <table id="outerTable" style="width:0px;" class="yellow" data-expected-width="20 0"> | |
mstensho (USE GERRIT)
2016/02/10 10:04:09
Can you add a pass condition text in front of this
dgrogan
2016/02/10 18:38:25
Done.
| |
11 <tr> | |
12 <td> | |
13 <table class="red"> | |
14 <tr> | |
15 <td style="width:50%;"> | |
16 <div style="width:200px;height:20px" class="green"></div > | |
17 </td> | |
18 </tr> | |
19 </table> | |
20 </td> | |
21 </tr> | |
22 </table> | |
23 <script src="../../resources/check-layout.js"></script> | |
24 <script> | |
25 checkLayout('#outerTable'); | |
26 </script> | |
OLD | NEW |