| <!DOCTYPE html> | 
 | <style> | 
 | body { | 
 |     margin: 0; | 
 |     padding: 0; | 
 | } | 
 | table { | 
 |     border: 0; | 
 |     border-spacing: 0; | 
 |     display: inline-table; | 
 |     background-color: black; | 
 | } | 
 | span { | 
 |    font: 20px Ahem; | 
 |    line-height: 20px; | 
 | } | 
 | </style> | 
 | <script src="../../resources/check-layout.js"></script> | 
 | <span> | 
 |     Text | 
 |     <table data-total-y=16> | 
 |     </table> | 
 |     Text | 
 | </span> | 
 | <p>crbug.com/452593: The baseline of an 'inline-table' is the baseline of the first row of the table. | 
 |    You should see two black boxes beside each other.</p> | 
 |    <p id="test-output"></p> | 
 | <script> | 
 | checkLayout('table', document.getElementById("test-output")); | 
 | </script> |