diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/309550-1-ref.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/bugs/309550-1-ref.html b/layout/reftests/bugs/309550-1-ref.html new file mode 100644 index 0000000000..005ca30428 --- /dev/null +++ b/layout/reftests/bugs/309550-1-ref.html @@ -0,0 +1,26 @@ +<!doctype html> +<html> +<head> +<style type="text/css"> +fieldset { + margin: 0; padding: 0; + border: none; +} +#float { + float: left; + width: 10em; height: 5em; + background-color: green; +} +#sibling { + width: 5em; height: 10em; + background-color: blue; +} +</style> +</head> +<body> +<fieldset> + <div id="float"></div> + <div id="sibling"></div> +</fieldset> +</body> +</html> |