transform-table-007.html (1239B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Table Without Preserve-3D 2</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="In this case, preserve-3d is applied to every 8 element that's explicitly specified in the source code. However, the HTML 9 parser will insert an extra <tbody> element around the <tr>, 10 which will not have preserve-3d specified, so the contents should again 11 vainsh. An implementation that incorrectly propagated preserve-3d to table 12 descendants 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 } 18 td > div { 19 transform: rotateX(90deg); 20 } 21 body > div, table, tr, td { 22 transform-style: preserve-3d; 23 } 24 </style> 25 </head> 26 <body> 27 <p>Nothing should appear except this sentence.</p> 28 <div> 29 <table> 30 <tr> 31 <td> 32 <div>Some text</div> 33 </td> 34 </tr> 35 </table> 36 </div> 37 </body> 38 </html>