Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985

This commit is contained in:
Josh Matthews 2017-10-31 08:58:31 -04:00
parent 43a4f01647
commit 64e0a52537
12717 changed files with 59835 additions and 59820 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>