Update web-platform-tests to revision 38bd28fe2368c650cf6e57be205cf3118dbd4997

This commit is contained in:
WPT Sync Bot 2019-02-25 20:41:08 -05:00
parent a28e15e4ea
commit 85fe63f512
165 changed files with 2144 additions and 2644 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>