diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html b/testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html new file mode 100644 index 0000000000..181fa58efc --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/gap-004-rtl.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Flexbox Test: gap - RTL intrinsic horizontal</title> +<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com"> +<link rel="help" href="https://www.w3.org/TR/css-grid-1/#gutters"> +<link rel="help" href="https://www.w3.org/TR/css-align-3/#column-row-gap"> +<link rel="help" href="https://www.w3.org/TR/css-align-3/#gap-legacy"> +<link rel="match" href="gap-004-rtl-ref.html"> +<meta name="assert" content="The 'gap' property enables putting space exclusively between items"> +<style> + body { + direction: rtl; + } + section { + background-color: green; + block-size: 100px; + display: inline-flex; + gap: 20px; + } + section > div{ + background-color: grey; + color: white; + } +</style> +<body> + <p>Test passes if there are <strong> green lines between boxes</strong>.</p> + <section> + <div>Black Panther</div> + <div>Wonder Woman</div> + <div>Storm</div> + <div>Flash</div> + </section> +</body> |