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 up[regression] #10644 iframe stacking issue #11046
Open
Comments
This was referenced May 6, 2016
|
Not a P1 anymore (there was an easy work around in bhtml). <style>
iframe, div {
position: absolute;
width: 200px;
height: 200px;
border-width: 0px;
}
iframe {
top: 50px;
left: 50px;
background-color: blue;
}
div {
top: 100px;
left: 100px;
background-color: red;
}
</style>
<iframe></iframe>
<div></iframe> |
|
This seems to be an issue with layout. The iframe, as an inline is added to the end of the list of Flow children. This means that when it is promoted to a pseudo-stackingcontext during display list construction, it is positioned after the div. Going to unassign this from myself, since it's unrelated to display list construction. |
|
This flow tree dump shows the iframe as last child of the shared ancestor of the div and the iframe.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The progressbar doesn't show up anymore in browserhtml.
Regression introduced by #10644
This might need a reduced test case, but in the meantime, if anybody has an idea…