servo/tests/ref/position_relative_inline_block_a.html
Patrick Walton 8640cf5588 layout: Take relative position offsets for inlines and inline-blocks
into account only once.

There were two bugs here: (1) relative position applied to
scanned/unscanned text fragments independently of the container element
that applied that relative position, causing double-counting; (2)
relative position applied to inline block fragments independently of the
wrapped block itself, causing double-counting.

This commit also removes the `cascade_anonymous` function and the
related `Fragment` constructor. They were unused, and their
functionality has been replaced by the `modify_style_for_*` series of
functions.

Closes #7067.
2015-08-12 08:28:35 -07:00

17 lines
222 B
HTML

<!DOCTYPE html>
<style>
body, html {
margin: 0;
padding: 0;
}
div {
display: inline-block;
position: relative;
top: 20px;
width: 20px;
height: 20px;
background: red;
}
</style>
<div></div>