fune/testing/web-platform/tests/css/css-transforms/transform-table-007.html
Florian Rivoal 4eca414820 Bug 1625091 [wpt PR 22460] - Fix a bunch of broken paths to specs in tests, a=testonly
Automatic update from web-platform-tests
Fix a bunch of broken paths to specs in tests (#22460)

--

wpt-commits: 5aa5889d7f2ba9cd60a83c1d39e1d852374f7879
wpt-pr: 22460
2020-03-31 11:31:09 +00:00

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 &lt;tbody&gt; element around the &lt;tr&gt;,
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>