Files
tubestation/servo/tests/html/incremental_float.html
Patrick Walton c719e3c8ef servo: Merge #13705 - layout: Don't touch the inline positions of block children unless they are to be reflowed (from pcwalton:incremental-float); r=notriddle
See the comment added to
`BlockFlow::propagate_assigned_inline_size_to_children()` for details.

Closes #13704.

r? @notriddle

Source-Repo: https://github.com/servo/servo
Source-Revision: 0ffbba94fa141f0049c96b3c30dccc22b1b43e6c
2016-10-12 16:00:37 -05:00

21 lines
353 B
HTML

<!DOCTYPE html>
<style>
.float {
float: right;
}
.bad {
display: inline-block;
background-color: gray;
height: 30px;
width: 30px;
}
.bad:hover {
opacity: .85;
}
</style>
<div class=float>
<a class="bad"></a>
</div>
<p style="clear: both">Mouse over the preceding gray square. It should change color but remain in place.</p>