Update web-platform-tests to revision 90aab682c731f768872ca2b37f047752d5da2d8a

This commit is contained in:
WPT Sync Bot 2020-10-01 08:19:23 +00:00
parent 701b698999
commit a71c7758db
139 changed files with 2383 additions and 998 deletions

View file

@ -0,0 +1,23 @@
<!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: green solid 20px;
height: 100px;
margin: 50px;
width: 100px;
}
</style>
<p>Test passes if there are 2 identical green squares and <strong>no red</strong>.
<div></div>
<div></div>

View file

@ -0,0 +1,28 @@
<!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: green solid 20px;
height: 85px;
margin: 60px 60px 20px;
width: 85px;
}
div#second
{
margin-top: 0px;
}
</style>
<p>Test passes if there are 2 identical green squares and <strong>no red</strong>.
<div></div>
<div id="second"></div>

View file

@ -0,0 +1,30 @@
<!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#outer
{
background-color: orange;
border: blue double 24px;
margin: 50px;
padding: 8px;
width: 216px;
}
div#inner
{
border: blue solid 8px;
height: 100px;
}
</style>
<p>Test passes if there is a filled orange rectangle inside 3 blue borders interleaved with 2 orange borders and <strong>no red</strong>.
<div id="outer">
<div id="inner"></div>
</div>

View file

@ -0,0 +1,31 @@
<!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#outer
{
background-color: orange;
border: blue double 24px;
margin: 50px;
padding: 8px;
width: 216px;
}
div#inner
{
background-color: green;
border: blue solid 8px;
height: 100px;
}
</style>
<p>Test passes if there is a filled green rectangle inside 3 blue borders interleaved with 2 orange borders and <strong>no red</strong>.
<div id="outer">
<div id="inner"></div>
</div>