Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transforms/crashtests/w-crossing-zero-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>CSS Test (Transforms): Transform with w crossing zero</title>
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/#processing-of-perspective-transformed-boxes">
<meta name="assert" content="This should not crash.">
<style>
#outer {
transform-style: preserve-3d;
}
#inner {
transform: matrix3d(4,947066.75,3,-57.374,1860.6956175,97,2291.191,-8.1785,9,46.047,5.02880,7.198084,2,8,2009,3.2);
border: medium solid;
}
</style>
<div id="outer">
<div id="inner">
</div>
</div>