mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
7f961c4964
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.
15 lines
352 B
HTML
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>
|