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