mirror of
https://github.com/servo/servo.git
synced 2025-08-16 02:45:36 +01:00
Update web-platform-tests to revision 90aab682c731f768872ca2b37f047752d5da2d8a
This commit is contained in:
parent
701b698999
commit
a71c7758db
139 changed files with 2383 additions and 998 deletions
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue