diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-backgrounds/background-repeat/reference | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/background-repeat/reference')
8 files changed, 230 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-no-repeat.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-no-repeat.xht new file mode 100644 index 0000000000..92bc4346de --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-no-repeat.xht @@ -0,0 +1,23 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:no-repeat</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + height: 150px; + width: 240px; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image appears once in the below rectangle. There should be a grey area to the right and bottom of the image.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + </div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-x.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-x.xht new file mode 100644 index 0000000000..cc36e3d308 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-x.xht @@ -0,0 +1,40 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:repeat-x</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + height: 150px; + width: 240px; + position: relative; + overflow: hidden; + } + div > img { + position: absolute; + top: 0; + } + div > img.first { + left: 0; + } + div > img.second { + left: 96px; + } + div > img.third { + left: 192px; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image repeats horizontally in the below rectangle 2½ times exactly. There should be a grey area below the images, but not to their right.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="first"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="second"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="third"/> + </div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-y.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-y.xht new file mode 100644 index 0000000000..99dfffcd13 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-y.xht @@ -0,0 +1,40 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:repeat-y</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + height: 150px; + width: 240px; + position: relative; + overflow: hidden; + } + div > img { + position: absolute; + left: 0; + } + div > img.first { + top: 0; + } + div > img.second { + top: 60px; + } + div > img.third { + top: 120px; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image repeats vertically in the below rectangle 2½ times exactly. There should be a grey area to the right of the images, but not below them.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="first"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="second"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" class="third"/> + </div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round-roundup.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round-roundup.xht new file mode 100644 index 0000000000..f915286485 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round-roundup.xht @@ -0,0 +1,39 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:round, rounding up</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + height: 212px; + width: 252px; + } + div > img { + float: left; + height: 53px; + width: 84px; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image repeats in the below rectangle 12 times exactly: 3 columns, 4 rows. The top border of the containing rectangle should be orange, the right border yellow, the bottom border green, and the left border blue.</p> + <p>Test fails if the above image repeats in below rectangle less than 12 times, with partial images lining the right and the bottom.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + </div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round.xht new file mode 100644 index 0000000000..a5f308a144 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-round.xht @@ -0,0 +1,33 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:round</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + height: 210px; + width: 236px; + } + div > img { + float: left; + height: 68px; + width: 118px; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image repeats in the below rectangle 6 times exactly: 2 columns, 3 rows. The top border of the containing rectangle should be orange, the right border yellow, the bottom border green, and the left border blue.</p> + <p>Test fails if the above image repeats in below rectangle more than 6 times, with partial images lining the right and the bottom.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + </div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-space.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-space.xht new file mode 100644 index 0000000000..eb0d3c05a1 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/background-repeat-space.xht @@ -0,0 +1,40 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test Reference: background-repeat:space</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + height: 204px; + width: 236px; + } + div > img { + float: left; + margin-bottom: 12px; + margin-right: 44px; + } + div > img.second { + margin-right: 0; + } + div > img.bottom { + margin-bottom: 0; + } + ]]> + </style> + </head> + <body> + <p><img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/></p> + <p>Test passes if the above image repeats in the below grey rectangle 6 times exactly: 2 columns, 3 rows. The images should appear at exactly the same size as the image above and be sitting at the edges of the grey rectangle.</p> + <p>Test fails if the above image repeats in the below rectangle more than 6 times, with partial images lining the right and the bottom.</p> + <div> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled" /> + <img src="support/rectangle-96x60.png" class="second" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" class="second" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" class="bottom" alt="Image download support must be enabled"/> + <img src="support/rectangle-96x60.png" class="bottom second" alt="Image download support must be enabled"/> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/gradient-repeat-spaced-with-borders.html b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/gradient-repeat-spaced-with-borders.html new file mode 100644 index 0000000000..0c226c8c78 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/gradient-repeat-spaced-with-borders.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>Spaced Gradient</title> +<style> + #foo { + width: calc(4 * 30px + 3 * 5px); + height: calc(4 * 30px + 3 * 5px); + background: radial-gradient(transparent 50%, #36c 50%); + background-size: 30px 30px; + background-repeat: space; + } +</style> +<body> + <div id="foo"></div> +</body> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/support/rectangle-96x60.png b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/support/rectangle-96x60.png Binary files differnew file mode 100644 index 0000000000..add0d272b1 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/reference/support/rectangle-96x60.png |