Update web-platform-tests to revision b'5b72ee9b50ae6898c94fe3ab50f4c68d4572977c'

This commit is contained in:
WPT Sync Bot 2023-02-28 01:44:37 +00:00
parent aa885dda93
commit 6d6ac7bedf
67 changed files with 913 additions and 194 deletions

View file

@ -4,13 +4,13 @@
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-images-4/#image-set-notation">
<link rel="match" href="reference/image-set-rendering-ref.html">
<meta name="assert" content="image-set rendering when resolution is invalid">
<meta name="assert" content="image-set rendering with zero resolution">
<style>
#test {
background-image: url("/images/green.png");
background-image: url("/images/red.png");
background-image: image-set(
url("/images/red.png") 0x,
url("/images/red.png") 2x
url("/images/green.png") 0x,
url("/images/green.png") 2x
);
width: 100px;
height: 100px;

View file

@ -4,11 +4,11 @@
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-images-4/#image-set-notation">
<link rel="match" href="reference/image-set-rendering-ref.html">
<meta name="assert" content="image-set rendering when resolution is invalid">
<meta name="assert" content="image-set rendering with zero resolution">
<style>
#test {
background-image: url("/images/green.png");
background-image: image-set(url("/images/red.png") 0x);
background-image: url("/images/red.png");
background-image: image-set(url("/images/green.png") 0x);
width: 100px;
height: 100px;
}