Move img_width_style_intrinsic_width_a.html to wpt reftests.

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

View file

@ -695,6 +695,18 @@
"url": "/_mozilla/css/img_size_a.html"
}
],
"css/img_width_style_intrinsic_width_a.html": [
{
"path": "css/img_width_style_intrinsic_width_a.html",
"references": [
[
"/_mozilla/css/img_width_style_intrinsic_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/img_width_style_intrinsic_width_a.html"
}
],
"css/incremental_float_a.html": [
{
"path": "css/incremental_float_a.html",
@ -4404,6 +4416,18 @@
"url": "/_mozilla/css/img_size_a.html"
}
],
"css/img_width_style_intrinsic_width_a.html": [
{
"path": "css/img_width_style_intrinsic_width_a.html",
"references": [
[
"/_mozilla/css/img_width_style_intrinsic_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/img_width_style_intrinsic_width_a.html"
}
],
"css/incremental_float_a.html": [
{
"path": "css/incremental_float_a.html",

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='img_width_style_intrinsic_width_ref.html'>
</head>
<body>
<div style="float: left; background: red; height: 100px; overflow: hidden">
<img src=400x400_green.png style="width: 100px;">
</div>
There should be no red.
</table>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div style="float: left; height: 100px; overflow: hidden">
<img src=400x400_green.png style="width: 100px;">
</div>
There should be no red.
</table>
</body>
</html>