Update web-platform-tests to revision b'2d7c53f5bc604132d2c83955537e454ee9c788c0'

This commit is contained in:
WPT Sync Bot 2023-01-18 01:45:07 +00:00
parent 619a46113f
commit 1c6b303ef2
396 changed files with 29611 additions and 1967 deletions

View file

@ -1,11 +0,0 @@
<!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

@ -4,7 +4,9 @@
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: linear-gradient(green, lightgreen);
width: 100px;
height: 100px;
background: linear-gradient(green, lightgreen);
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>
<div id="test"></div>

View file

@ -4,7 +4,9 @@
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: radial-gradient(green, lightgreen);
width: 100px;
height: 100px;
background: radial-gradient(green, lightgreen);
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>
<div id="test"></div>

View file

@ -4,7 +4,9 @@
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
background-image: url("/images/green.png");
width: 100px;
height: 100px;
background-color: lime;
}
</style>
<script src="../resources/image-set-rendering-helper.js"></script>
<div id="test"></div>