diff options
Diffstat (limited to 'layout/reftests/details-summary/float-left-and-inflow-details.html')
-rw-r--r-- | layout/reftests/details-summary/float-left-and-inflow-details.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/layout/reftests/details-summary/float-left-and-inflow-details.html b/layout/reftests/details-summary/float-left-and-inflow-details.html new file mode 100644 index 0000000000..92875763d9 --- /dev/null +++ b/layout/reftests/details-summary/float-left-and-inflow-details.html @@ -0,0 +1,38 @@ +<!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: left; + width: 200px; + height: 200px; + background-color: lightgreen; + } + details { + background-color: orange; + } + summary { + background-color: green; + /* Hide the triangle for comparing with div in reftest. */ + list-style-type: none; + } + </style> + <body> + <div id="float"></div> + <details> + <summary>Summary</summary> + 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. + </details> + </body> +</html> |