fune/layout/reftests/transform-3d/sorting-2b.html
Emilio Cobos Álvarez 813ca5b3b9 Bug 1855763 - Automatic fixes to avoid using prefixed transforms in tests. r=layout-reviewers,jfkthame
Using the script in comment 5, excluding third-party directories.

Differential Revision: https://phabricator.services.mozilla.com/D189760
2023-10-02 12:36:17 +00:00

30 lines
650 B
HTML

<html>
<head>
<style type="text/css">
#parent {
transform-style: preserve-3d;
transform: rotatex(180deg);
}
#one {
width: 100px;
height: 100px;
background-color: red;
transform: translatez(10px) translatey(50px);
}
#two {
width: 100px;
height: 100px;
background-color: #00FF00;
transform: translatez(10px);
}
</style>
</head>
<body>
<div id="parent">
<div id="one"></div>
<div id="two"></div>
</div>
</body>
</html>