1
0
Fork 0
firefox/testing/web-platform/tests/css/css-backgrounds/background-position/background-position-right-in-body.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
594 B
HTML

<!doctype html>
<title>background-position with 'right' edge keywords when painting background for body in offset document root</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-position">
<link rel="match" href="../../filter-effects/reference/green-100x100.html">
<style>
html {
margin: 8px;
}
body {
background-image: linear-gradient(green, green), linear-gradient(red, red);
background-size: 100px 100px, 100px 100px;
background-position: right 100% top 0%, left 0% top 0%;
background-repeat: no-repeat;
}
</style>
<body></body>