diff options
Diffstat (limited to 'layout/reftests/forms/button/button-display-flex-fullsize-1-ref.html')
-rw-r--r-- | layout/reftests/forms/button/button-display-flex-fullsize-1-ref.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/reftests/forms/button/button-display-flex-fullsize-1-ref.html b/layout/reftests/forms/button/button-display-flex-fullsize-1-ref.html new file mode 100644 index 0000000000..2c45c375ab --- /dev/null +++ b/layout/reftests/forms/button/button-display-flex-fullsize-1-ref.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0 +--> +<html> +<head> + <title>Reference: Testing for full height flex container in a button.</title> + <meta charset="utf-8"> + <style> + button { + vertical-align: top; + padding: 0; + border: solid 1px black; + background: lightblue; + width: 200px; + height: 200px; + } + + .flex { + display: flex; + justify-content: space-between; + align-items: stretch; + width: 100%; + height: 100%; + } + + .flex > * { + margin: 1px; + background: teal; + min-height: 10px; + min-width: 10px; + } + + .vertical { + flex-direction: column; + } + </style> +</head> +<body> + <button> + <div class="flex"> + <div></div> + <div></div> + <div></div> + </div> + </button> + <button> + <div class="flex vertical"> + <div></div> + <div></div> + <div></div> + </div> + </button> +</body> +</html> + |