blob: b16618da44965d1dfc714fa9010b35014adf6c26 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
}
#overflowHidden {
overflow: hidden;
background: purple;
}
#transformed {
transform: rotate(45deg) translate3d(0, 0, 0);
background: green;
}
</style>
</head>
<body>
<p> Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=83954">83954</a>: REGRESSION(110072): Clipping is not applied on layers that are animated using platform code</p>
<p> This passes if the green transformed square doesn't split out of the purple square.</p>
<div id="overflowHidden">
<div id="transformed"></div>
</div>
</body>
</html>