Move block_image.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-16 12:30:38 +02:00
parent efc4ce876f
commit 6d5da817e8
6 changed files with 34 additions and 2 deletions

View file

@ -555,6 +555,22 @@
"url": "/_mozilla/css/block_formatting_context_with_margin_a.html"
}
],
"css/block_image.html": [
{
"path": "css/block_image.html",
"references": [
[
"/_mozilla/css/500x300_green.html",
"=="
],
[
"/_mozilla/css/noteq_500x300_white.html",
"!="
]
],
"url": "/_mozilla/css/block_image.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -2636,6 +2652,22 @@
"url": "/_mozilla/css/block_formatting_context_with_margin_a.html"
}
],
"css/block_image.html": [
{
"path": "css/block_image.html",
"references": [
[
"/_mozilla/css/500x300_green.html",
"=="
],
[
"/_mozilla/css/noteq_500x300_white.html",
"!="
]
],
"url": "/_mozilla/css/block_image.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,5 @@
<html>
<body>
<div style="width: 500px; height: 300px; background-color: #0f0;"></div>
</body>
</html>

View file

@ -0,0 +1,8 @@
<html>
<link rel=match href=500x300_green.html>
<link rel=mismatch href=noteq_500x300_white.html>
<body>
<img style="display: block; width: 500px; height: 300px; background-color: red;"
src="400x400_green.png">
</body>
</html>

View file

@ -0,0 +1,5 @@
<html>
<body>
<div style="width: 500px; height: 300px; background-color: #fff;"></div>
</body>
</html>