Move width_nonreplaced_block_simple_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 20:48:59 -04:00
parent 58fd304169
commit f407142656
4 changed files with 25 additions and 1 deletions

View file

@ -2147,6 +2147,18 @@
"url": "/_mozilla/css/whitespace_pre.html"
}
],
"css/width_nonreplaced_block_simple_a.html": [
{
"path": "css/width_nonreplaced_block_simple_a.html",
"references": [
[
"/_mozilla/css/width_nonreplaced_block_simple_b.html",
"=="
]
],
"url": "/_mozilla/css/width_nonreplaced_block_simple_a.html"
}
],
"css/word-spacing.html": [
{
"path": "css/word-spacing.html",
@ -5028,6 +5040,18 @@
"url": "/_mozilla/css/whitespace_pre.html"
}
],
"css/width_nonreplaced_block_simple_a.html": [
{
"path": "css/width_nonreplaced_block_simple_a.html",
"references": [
[
"/_mozilla/css/width_nonreplaced_block_simple_b.html",
"=="
]
],
"url": "/_mozilla/css/width_nonreplaced_block_simple_a.html"
}
],
"css/word-spacing.html": [
{
"path": "css/word-spacing.html",

View file

@ -0,0 +1,24 @@
<html>
<head>
<link rel='match' href='width_nonreplaced_block_simple_b.html'>
<style>
#first {
position: relative;
width: 100px;
height: 100px;
border: solid 1px;
}
#block {
height: 50px;
width: 50%;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="block">
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,22 @@
<html>
<head>
<style>
#first {
width: 100px;
height: 100px;
border: solid 1px;
}
#block {
height: 50px;
width: 50px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="block">
</div>
</div>
</body>
</html>