diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/details-summary/float-right-and-float-open-details-ref.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/details-summary/float-right-and-float-open-details-ref.html b/layout/reftests/details-summary/float-right-and-float-open-details-ref.html new file mode 100644 index 0000000000..c8c3b54b3f --- /dev/null +++ b/layout/reftests/details-summary/float-right-and-float-open-details-ref.html @@ -0,0 +1,37 @@ +<!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 { + float: right; + background-color: orange; + } + div#summary { + background-color: green; + } + </style> + <body> + <div id="float"></div> + <div id="details"> + <div id="summary">Summary</div> + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod + tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim + veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea + commodo consequat. Duis aute irure dolor in reprehenderit in voluptate + velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat + cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id + est laborum. + </div> + </body> +</html> |