diff options
Diffstat (limited to 'layout/reftests/details-summary/summary-three-columns.html')
-rw-r--r-- | layout/reftests/details-summary/summary-three-columns.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/details-summary/summary-three-columns.html b/layout/reftests/details-summary/summary-three-columns.html new file mode 100644 index 0000000000..0f3f20cf2b --- /dev/null +++ b/layout/reftests/details-summary/summary-three-columns.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<!-- Any copyright is dedicated to the Public Domain. + - http://creativecommons.org/publicdomain/zero/1.0/ --> + +<html> + <style> + summary { + /* Hide the triangle for comparing with div in reftest. */ + list-style-type: none; + column-count: 3; + column-rule: 1px solid lightgray; + -webkit-column-count: 3; + -webkit-column-rule: 1px solid lightgray; + border: 1px solid lightblue; + background-color: lightgreen; + } + </style> + <body> + <details open> + <summary> + <p>line</p> + <p>line</p> + <p>line</p> + <p>line</p> + <p>line</p> + <p>line</p> + <p>line</p> + </summary> + <p>This is the details.</p> + </details> + </body> +</html> |