transform-table-002.html (843B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transform on Inline-Table</title> 5 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property"> 7 <meta name="assert" content='This tests that an appropriately-crafted 8 transform applied to an inline-table works the same as if was applied to a 9 wrapper div.'> 10 <link rel="match" href="transform-table-001-ref.html"> 11 <link rel="mismatch" href="transform-table-002-notref.html"> 12 <style> 13 table { 14 display: inline-table; 15 transform: translate(200px) rotate(180deg); 16 transform-origin: left; 17 } 18 </style> 19 </head> 20 <body> 21 <table> 22 <caption>Hello</caption> 23 <tr><td>there!</td></tr> 24 </table> 25 </body> 26 </html>