Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444

This commit is contained in:
Josh Matthews 2017-04-17 12:06:02 +10:00 committed by Anthony Ramine
parent 25e8bf69e6
commit 665817d2a6
35333 changed files with 1818077 additions and 16036 deletions

View file

@ -0,0 +1,18 @@
<!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="Apple" href="http://www.apple.com/"/>
<style type="text/css"><![CDATA[
div {
background-color: green;
height: 200px;
width: 200px;
}
]]></style>
</head>
<body>
<div></div>
<p>You should see a green box. There should be no red.</p>
</body>
</html>

View file

@ -0,0 +1,29 @@
<!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="Apple Inc." href="http://www.apple.com/"/>
<style type="text/css"><![CDATA[
div {
position: relative;
}
div p {
position: absolute;
top: 0;
left: 0;
display: block;
}
#ref {
width: 100px;
height: 100px;
background-color: green;
}
]]></style>
</head>
<body>
<p>You should see a green box. There should be no red.</p>
<div>
<p id="ref"></p>
</div>
</body>
</html>

View file

@ -0,0 +1,30 @@
<!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="Apple Inc." href="http://www.apple.com/"/>
<style type="text/css"><![CDATA[
div {
position: relative;
color: green;
}
div p {
width: 10em;
font-family: Ahem;
position: absolute;
top: 0;
left: 0;
line-height: 2;
}
]]></style>
</head>
<body>
<p>
You should see two lines of 5 green boxes each. You should see no
red.
</p>
<div>
<p>X X <span>X X X X X X</span> X X</p>
</div>
</body>
</html>

View file

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<title>Reference File</title>
<link rel="author" title="CJ Gammon" href="mailto:youremail@address.com">
<style type="text/css">
#container{
position: relative;
}
.square{
position: absolute;
}
#green{
top: 50px;
left: 50px;
width: 100px;
height: 100px;
background: green;
}
</style>
</head>
<body>
<p>The test passes if there is a green square and no red.</p>
<div id="container">
<div id="green" class="square"></div>
</div>
</body>
</html>