Move img_size_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 737c7fa14b
commit b9c502ca3f
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/img_size_a.html": [
{
"path": "css/img_size_a.html",
"references": [
[
"/_mozilla/css/img_size_b.html",
"=="
]
],
"url": "/_mozilla/css/img_size_a.html"
}
],
"css/inline_block_border_a.html": [
{
"path": "css/inline_block_border_a.html",
@ -4272,6 +4284,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/img_size_a.html": [
{
"path": "css/img_size_a.html",
"references": [
[
"/_mozilla/css/img_size_b.html",
"=="
]
],
"url": "/_mozilla/css/img_size_a.html"
}
],
"css/inline_block_border_a.html": [
{
"path": "css/inline_block_border_a.html",

View file

@ -0,0 +1,19 @@
<html>
<head>
<link rel='match' href='img_size_b.html'>
<title>
The winter is too cold for me...
</title>
</head>
<body>
<div>
<img src="rust_logo.png" width="206" />
</div>
<div>
<img src="rust_logo.png" width="206" />
</div>
<div style="width:1000px">
<img src="rust_logo.png" style="width:100px" />
</div>
</body>
</html>

View file

@ -0,0 +1,18 @@
<html>
<head>
<title>
The winter is too cold for me...
</title>
</head>
<body>
<div>
<img src="rust_logo.png" height="206" />
</div>
<div>
<img src="rust_logo.png" style="height:206px"/>
</div>
<div style="width:1000px">
<img src="rust_logo.png" style="width:10%" />
</div>
</body>
</html>