gecko/layout/reftests/outline/outline-overflow-block-float.html
L. David Baron 1b977c9838 Bug 480888 patch 5: Add tests that should catch the regression across platforms that was previously caught only by a reftest on Android.
The outline-overflow-inline-block-* tests fail, as expected, with the
aOverflowOverride parameter to UnionBorderBoxes always changed to null.
Note that the outline-overflow-inline-block-* tests depend on the fix
for bug 709014.
2014-02-17 20:07:46 -08:00

15 lines
352 B
HTML

<!DOCTYPE HTML>
<title>outline goes around overflow, floats</title>
<style>
html, body { margin: 0; padding: 0; border: none }
html { overflow:hidden /* avoid second reflow for scrollbars */ }
body > div { margin: 100px; outline: 2px solid blue }
body > div > div { float: left; width: 100px; height: 100px }
</style>
<body>
<div><div></div></div>