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

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -0,0 +1,46 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reference Test</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
div
{
border: transparent solid 50px;
border-image-source: url("../support/9-colored-areas.png");
border-image-slice: 5% 10% 15% 20%;
margin-bottom: 8px;
width: 0px;
}
div#sub-test1
{
border-image-width: 50px;
}
div#sub-test2
{
border-image-width: 50px 30px;
}
div#sub-test3
{
border-image-width: 70px 0px 30px 0px;
}
div#sub-test4
{
border-image-width: 0px 70px 0px 30px;
}
</style>
<div id="sub-test1"></div>
<div id="sub-test2"></div>
<div id="sub-test3"></div>
<div id="sub-test4"></div>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-right-width: 1px, reference</title>
<style>
div { display: inline-block; height: 100px; border-left-style: solid; border-left-width: 1px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-right-width: 3px, reference</title>
<style>
div { display: inline-block; height: 100px; border-left-style: solid; border-left-width: 3px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-right-width: 5px, reference</title>
<style>
div { display: inline-block; height: 100px; border-left-style: solid; border-left-width: 5px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-top-width: 1px, reference</title>
<style>
div { border-top-style: solid; border-top-width: 1px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-top-width: 3px, reference</title>
<style>
div { border-top-style: solid; border-top-width: 3px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Borders: border-top-width: 5px, reference</title>
<style>
div { border-top-style: solid; border-top-width: 5px; }
</style>
</head>
<body>
<p>There should be a black line below and no red.</p>
<div></div>
</body>
</html>

View file

@ -0,0 +1,19 @@
<!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 Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<style type="text/css"><![CDATA[
div
{
background-color: green;
height: 100px;
width: 100px;
}
]]></style>
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div></div>
</body>
</html>