Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../resources/check-layout.js"></script> | |
| 3 <p>Below there should be a green square with a black border.</p> | |
| 4 <table id="elm" style="background:black;" data-expected-height="106" data-expect ed-width="106"> | |
| 5 <tr> | |
| 6 <td style="height:min-intrinsic;"> | |
| 7 <div style="width:100px; height:100px; background:green;"></div> | |
| 8 </td> | |
| 9 </tr> | |
| 10 </table> | |
| 11 <p id="result"></p> | |
| 12 <script> | |
| 13 checkLayout("#elm", document.getElementById("result")); | |
| 14 </script> | |
| OLD | NEW |