Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upIframe with 3D transform, content not clipped #11650
Closed
Comments
|
It's 3D transform specific: <style>
div, iframe {
width: 100vw;
height: 100vh;
top: 0px;
left: 0px;
}
div {
perspective: 1000px;
background: grey;
}
iframe {
display: block;
transform-origin: left center 0px;
transform: translate3d(0px, 0px, -200px);
}
</style>
<div>
<iframe src="https://duckduckgo.com/?q=foobar&ia=about">
</iframe>
</div>@pcwalton any ideas? If that's too hard to fix, I think we can simply move to 2D transforms in browserhtml. |
This was referenced Jun 7, 2016
|
I think this is probably something related to DDG's specific use of stacking contexts, similar to #11648. |
pcwalton
added a commit
to pcwalton/webrender
that referenced
this issue
Jun 10, 2016
transform/perspective and world transform/perspective. Addresses servo/servo#11650.
bors-servo
added a commit
to servo/webrender
that referenced
this issue
Jun 13, 2016
Rewrite the flatten transform/clip code to more clearly separate local transform/perspective and world transform/perspective. Addresses servo/servo#11650. r? @glennw
bors-servo
added a commit
to servo/webrender
that referenced
this issue
Jun 20, 2016
Rewrite the flatten transform/clip code to more clearly separate local transform/perspective and world transform/perspective. Addresses servo/servo#11650. r? @glennw
|
This appears to be fixed with WR2 #12711 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Even though both #11151 and #11358 are now fixed, we still have issues with iframe content not being properly clipped.
Both previous test case render correctly, so it's something new.
Working on a reduced test case now.