blob: b16618da44965d1dfc714fa9010b35014adf6c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!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>
|