forked from mirrors/gecko-dev
Automatic update from web-platform-tests Fix a bunch of broken paths to specs in tests (#22460) -- wpt-commits: 5aa5889d7f2ba9cd60a83c1d39e1d852374f7879 wpt-pr: 22460
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Test (Transforms): Table Without Preserve-3D 2</title>
|
|
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
|
|
<link rel="help" href="http://www.w3.org/TR/css-transforms-2/#transform-style-property">
|
|
<meta name="assert" content="In this case, preserve-3d is applied to every
|
|
element that's explicitly specified in the source code. However, the HTML
|
|
parser will insert an extra <tbody> element around the <tr>,
|
|
which will not have preserve-3d specified, so the contents should again
|
|
vainsh. An implementation that incorrectly propagated preserve-3d to table
|
|
descendants might cause the text to appear, but mirrored.">
|
|
<link rel="match" href="transform-blank-ref.html">
|
|
<style>
|
|
body > div {
|
|
transform: rotateX(90deg);
|
|
}
|
|
td > div {
|
|
transform: rotateX(90deg);
|
|
}
|
|
body > div, table, tr, td {
|
|
transform-style: preserve-3d;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Nothing should appear except this sentence.</p>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<div>Some text</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|