fune/layout/reftests/transform-3d/overflow-hidden-1a.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

27 lines
411 B
HTML

<!DOCTYPE html>
<html><head>
<style type="text/css">
.stage{
perspective: 700px;
overflow: hidden;
width: 260px;
height: 260px;
display: block;
}
.box {
width: 170px;
height: 170px;
background-color: red;
display: block;
transform: rotate3d(0,1,0, 50deg) translatey(20px);
}
</style>
</head>
<body id="body">
<div class="stage">
<div class="box"></div>
</div>
</body></html>