diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/css-backgrounds/background-repeat | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/background-repeat')
16 files changed, 418 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-no-repeat.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-no-repeat.xht new file mode 100644 index 0000000000..00d428f6ec --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-no-repeat.xht @@ -0,0 +1,29 @@ +<!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: background-repeat:no-repeat</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="reviewer" title="Gerard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> + <link rel="match" href="reference/background-repeat-no-repeat.xht"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat" /> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The image is placed once in the background positioning area and not repeated in any direction." /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + background-image: url("support/rectangle-96x60.png"); + background-repeat: no-repeat; + 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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-x.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-x.xht new file mode 100644 index 0000000000..2f3984a787 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-x.xht @@ -0,0 +1,29 @@ +<!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: background-repeat:repeat-x</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="reviewer" title="Gerard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> + <link rel="match" href="reference/background-repeat-repeat-x.xht"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat" /> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The image is repeated horizontally as often as needed to cover the background painting area." /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + background-image: url("support/rectangle-96x60.png"); + background-repeat: repeat-x; + 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 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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-y.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-y.xht new file mode 100644 index 0000000000..b6ba5938a1 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-repeat-y.xht @@ -0,0 +1,29 @@ +<!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: background-repeat:repeat-y</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="reviewer" title="Gerard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> + <link rel="match" href="reference/background-repeat-repeat-y.xht"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat" /> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The image is repeated vertically as often as needed to cover the background painting area." /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + background-image: url("support/rectangle-96x60.png"); + background-repeat: repeat-y; + 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 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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round-roundup.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round-roundup.xht new file mode 100644 index 0000000000..14b0f175a1 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round-roundup.xht @@ -0,0 +1,27 @@ +<!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: background-repeat:round, rounding up</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="match" href="reference/background-repeat-round-roundup.xht"/> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The 'background-repeat: round' declaration must scale an image in one or more dimensions so it fits a whole number of times in the background positioning area." /> + <style type="text/css"> + <![CDATA[ + div { + background-image: url("support/rectangle-96x60.png"); + background-repeat: round; + height: 212px; + width: 252px; + } + ]]> + </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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round.xht new file mode 100644 index 0000000000..507a75c573 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-round.xht @@ -0,0 +1,27 @@ +<!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: background-repeat:round</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="match" href="reference/background-repeat-round.xht"/> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The 'background-repeat: round' declaration must scale an image in one or more dimensions so it fits a whole number of times in the background positioning area." /> + <style type="text/css"> + <![CDATA[ + div { + background-image: url("support/rectangle-96x60.png"); + background-repeat: round; + height: 204px; + width: 236px; + } + ]]> + </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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-space.xht b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-space.xht new file mode 100644 index 0000000000..8867520c56 --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/background-repeat-space.xht @@ -0,0 +1,29 @@ +<!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: background-repeat:space</title> + <link rel="author" title="Jeffrey Carl Faden" href="http://www.jeffreyatw.com/" /> + <link rel="match" href="reference/background-repeat-space.xht"/> + <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> + <meta name="flags" content="image" /> + <meta name="assert" content="The 'background-repeat: space' declaration must space out images in one or more dimensions so they fit a whole number of times in the background positioning area. The first and last images in each row and column must sit along edge(s) of the background positioning area." /> + <meta name="fuzzy" content="maxDifference=0-53; totalPixels=0-2796" /> + <style type="text/css"> + <![CDATA[ + div { + background-color: grey; + background-image: url("support/rectangle-96x60.png"); + background-repeat: space; + height: 204px; + width: 236px; + } + ]]> + </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></div> + </body> +</html> diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/gradient-repeat-spaced-with-borders.html b/testing/web-platform/tests/css/css-backgrounds/background-repeat/gradient-repeat-spaced-with-borders.html new file mode 100644 index 0000000000..289e856b4c --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-repeat/gradient-repeat-spaced-with-borders.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>Tiled gradient with spaces is repeated behind the border.</title> +<link rel="match" href="reference/gradient-repeat-spaced-with-borders.html"> +<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#valdef-background-repeat-space"> +<style> + #foo { + width: 65px; + height: 65px; + border: solid 35px transparent; + 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/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 diff --git a/testing/web-platform/tests/css/css-backgrounds/background-repeat/support/rectangle-96x60.png b/testing/web-platform/tests/css/css-backgrounds/background-repeat/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/support/rectangle-96x60.png |