diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html')
-rw-r--r-- | testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html b/testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html new file mode 100644 index 0000000000..a6f427516e --- /dev/null +++ b/testing/web-platform/tests/css/css-contain/contain-paint-clip-017.html @@ -0,0 +1,59 @@ +<!DOCTYPE html> + + <meta charset="UTF-8"> + + <title>CSS Containment Test: 'contain: paint' and clipping at padding edge (generated ::before content)</title> + + <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> + <link rel="help" href="https://www.w3.org/TR/css-contain-1/#containment-paint"> + <link rel="match" href="reference/contain-paint-clip-015-ref.html"> + + <meta content="This test checks that the paint containment of an element clips at its padding edge. In this test, the generated element (a red square image) is located outside the content edge, into what would have been the padding belt of the element." name="assert"> + + <!-- + + contain-paint-clip-011: content overflows horizontally, principal box has no padding + + contain-paint-clip-012: content overflows vertically, principal box has no padding + + contain-paint-clip-013: content overflows horizontally, principal box has horizontal padding + + contain-paint-clip-014: content overflows vertically, principal box has vertical padding + + contain-paint-clip-015: content overflow horizontally, principal box has horizontal padding and corner clipping is involved + + contain-paint-clip-016: content overflow vertically, principal box has vertical padding and corner clipping is involved + + contain-paint-clip-017: principal box has horizontal and vertical padding, generated ::before content is inside top-right corner + + contain-paint-clip-018: principal box has horizontal and vertical padding, generated ::after content is inside top-left corner + + --> + + + <style> + div + { + background-color: green; + border-radius: 100px; + contain: paint; + height: 50px; + padding: 25px; + width: 50px; + } + + div::before + { + background-color: red; + content: ""; + display: block; + height: 18px; + margin-left: 61px; + margin-top: -28px; + width: 18px; + } + </style> + + <p>Test passes if there is a filled green circle and <strong>no red</strong>. + + <div></div> |