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 upFloats should be rendered in front of in-flow blocks #677
Milestone
Comments
|
Needed for #1366. |
|
If it was needed for acid2, does that imply that this is fixed? |
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
Rename embedded-content-0 and -1 to their new (pretty) ids
|
Fixed. |
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Drop unneeded Arc The Arc seems unnecessary here. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/677) <!-- Reviewable:end -->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CSS 2.1 section 9.5 language is: "A float can overlap other boxes in the normal flow... When this happens, floats are rendered in front of non-positioned in-flow blocks, but behind in-flow inlines."
In terms of Appendix E, Servo currently does 4 and 5 together. This is visible in
test_float_placement.html, for example. Placement is correct, but blue background float should be rendered in front of gray background block.