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

@ -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: Border-style shorthand property set using a single value</title>
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-style-properties" />
<meta name="assert" content="The 'border-style' property set using a single value correctly renders the specified value for all sides of the element." />
<style type="text/css">
div
{
width: 153px;
height: 153px;
margin: 10px;
border-style: groove;
border-width: 20px;
border-color: black;
}
</style>
</head>
<body>
<p>Test passes if there is a box with groove borders.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!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: Border-style shorthand property set using a single value</title>
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-style-properties" />
<meta name="assert" content="The 'border-style' property set using a single value correctly renders the specified value for all sides of the element." />
<style type="text/css">
div
{
width: 153px;
height: 153px;
margin: 10px;
border-style: groove;
border-width: 20px;
border-color: black;
border-radius: 20px;
}
</style>
</head>
<body>
<p>Test passes if there is a box with groove borders.</p>
<div></div>
</body>
</html>