diff options
Diffstat (limited to 'layout/reftests/details-summary/float-right-and-inflow-details-ref.html')
-rw-r--r-- | layout/reftests/details-summary/float-right-and-inflow-details-ref.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/details-summary/float-right-and-inflow-details-ref.html b/layout/reftests/details-summary/float-right-and-inflow-details-ref.html new file mode 100644 index 0000000000..b65de5bdbb --- /dev/null +++ b/layout/reftests/details-summary/float-right-and-inflow-details-ref.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<!-- Any copyright is dedicated to the Public Domain. + - http://creativecommons.org/publicdomain/zero/1.0/ --> + +<html> + <style> + body { + width: 400px; + } + div#float { + float: right; + width: 200px; + height: 200px; + background-color: lightgreen; + } + div#details { + background-color: orange; + } + div#summary { + background-color: green; + } + </style> + <body> + <div id="float"></div> + <div id="details"> + <div id="summary">Summary</div> + <!-- No content due to closed details --> + </div> + </body> +</html> |