Update web-platform-tests to revision b'afdce893ed51bc1a7a7ac03b16b5a575caad071a'

This commit is contained in:
WPT Sync Bot 2023-03-17 01:51:32 +00:00
parent a8da28e55d
commit 3b420af385
393 changed files with 17484 additions and 4185 deletions

View file

@ -0,0 +1,11 @@
<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<style>
div {
width: 100px;
height: 100px;
background-image: linear-gradient(purple, yellow);
}
</style>
<div></div>

View file

@ -0,0 +1,15 @@
<!doctype html>
<meta charset="utf-8">
<title>content: gradient</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="match" href="element-replacement-gradient-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property" />
<style>
div {
width: 100px;
height: 100px;
content: linear-gradient(purple, yellow);
}
</style>
<div></div>