transform-table-006.html (1166B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Table Without Preserve-3D 1</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-2/#transform-style-property"> 7 <meta name="assert" content="This has preserve-3d applied to the outer 8 wrapper of a table, but not the inner wrapper containing its contents. 9 Therefore, the contents should be rotated 90 degrees and vanish, and the 10 90-degree rotation on the outer wrapper shouldn't restore them. An 11 implementation that incorrectly propagated preserve-3d to table descendants 12 might cause the text to appear, but mirrored."> 13 <link rel="match" href="transform-blank-ref.html"> 14 <style> 15 body > div { 16 transform: rotateX(90deg); 17 transform-style: preserve-3d; 18 } 19 td > div { 20 transform: rotateX(90deg); 21 } 22 </style> 23 </head> 24 <body> 25 <p>Nothing should appear except this sentence.</p> 26 <div> 27 <table> 28 <tr> 29 <td> 30 <div>Some text</div> 31 </td> 32 </tr> 33 </table> 34 </body> 35 </html>