Update web-platform-tests to revision b'6275bd0cf6fcfbfb531d371666602ddf4ca6dbf6'

This commit is contained in:
WPT Sync Bot 2022-12-16 01:28:46 +00:00
parent 2a45f247c4
commit afd92e9e80
214 changed files with 6026 additions and 531 deletions

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<title>Image set is supported in the content property</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
content: url("/images/green.png");
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<title>Image set linear-gradient rendering</title>
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: linear-gradient(green, lightgreen);
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<title>Image set radial-gradient rendering</title>
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: radial-gradient(green, lightgreen);
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<title>Image set rendering</title>
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: url("/images/green.png");
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>