Move size_attributes.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-25 17:56:28 +01:00
parent 3f99612e5d
commit e2c5143ec7
4 changed files with 25 additions and 1 deletions

View file

@ -1759,6 +1759,18 @@
"url": "/_mozilla/css/iframe/simple_inline_width_percentage.html"
}
],
"css/iframe/size_attributes.html": [
{
"path": "css/iframe/size_attributes.html",
"references": [
[
"/_mozilla/css/iframe/size_attributes_ref.html",
"=="
]
],
"url": "/_mozilla/css/iframe/size_attributes.html"
}
],
"css/image_rendering_auto_a.html": [
{
"path": "css/image_rendering_auto_a.html",
@ -7398,6 +7410,18 @@
"url": "/_mozilla/css/iframe/simple_inline_width_percentage.html"
}
],
"css/iframe/size_attributes.html": [
{
"path": "css/iframe/size_attributes.html",
"references": [
[
"/_mozilla/css/iframe/size_attributes_ref.html",
"=="
]
],
"url": "/_mozilla/css/iframe/size_attributes.html"
}
],
"css/image_rendering_auto_a.html": [
{
"path": "css/image_rendering_auto_a.html",

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<link rel=match href=size_attributes_ref.html>
<style>
body {
background: purple;
}
</style>
</head>
<body>
<iframe src="about:blank" width=200 height=100></iframe>
</body>
</html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: purple;
}
iframe {
width: 200px;
height: 100px;
}
</style>
</head>
<body>
<iframe src="about:blank"></iframe>
</body>
</html>