Move viewport_percentage_vmin_vmax_a.html and viewport_percentage_vmin_vmax_b.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-12-21 18:08:46 +01:00
parent 1619a908b3
commit 797b21eaf1
5 changed files with 60 additions and 6 deletions

View file

@ -6,8 +6,6 @@ fragment=top != ../html/acid2.html acid2_ref.html
resolution=300x300,device-pixel-ratio=2 != pixel_snapping_border_a.html pixel_snapping_border_ref.html
resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_snapping_position_ref.html
resolution=800x600 == viewport_percentage_vmin_vmax.html viewport_percentage_vmin_vmax_a.html
# resolution=600x800 == viewport_percentage_vmin_vmax.html viewport_percentage_vmin_vmax_b.html
resolution=800x600 == viewport_percentage_vw_vh.html viewport_percentage_vw_vh_a.html
# resolution=600x800 == viewport_percentage_vw_vh.html viewport_percentage_vw_vh_b.html

View file

@ -4867,6 +4867,32 @@
"url": "/_mozilla/css/viewport_meta.html"
}
],
"css/viewport_percentage_vmin_vmax_a.html": [
{
"path": "css/viewport_percentage_vmin_vmax_a.html",
"references": [
[
"/_mozilla/css/viewport_percentage_vmin_vmax_ref.html",
"=="
]
],
"url": "/_mozilla/css/viewport_percentage_vmin_vmax_a.html",
"viewport_size": "700x500"
}
],
"css/viewport_percentage_vmin_vmax_b.html": [
{
"path": "css/viewport_percentage_vmin_vmax_b.html",
"references": [
[
"/_mozilla/css/viewport_percentage_vmin_vmax_ref.html",
"=="
]
],
"url": "/_mozilla/css/viewport_percentage_vmin_vmax_b.html",
"viewport_size": "500x700"
}
],
"css/viewport_rule.html": [
{
"path": "css/viewport_rule.html",
@ -10800,6 +10826,32 @@
"url": "/_mozilla/css/viewport_meta.html"
}
],
"css/viewport_percentage_vmin_vmax_a.html": [
{
"path": "css/viewport_percentage_vmin_vmax_a.html",
"references": [
[
"/_mozilla/css/viewport_percentage_vmin_vmax_ref.html",
"=="
]
],
"url": "/_mozilla/css/viewport_percentage_vmin_vmax_a.html",
"viewport_size": "700x500"
}
],
"css/viewport_percentage_vmin_vmax_b.html": [
{
"path": "css/viewport_percentage_vmin_vmax_b.html",
"references": [
[
"/_mozilla/css/viewport_percentage_vmin_vmax_ref.html",
"=="
]
],
"url": "/_mozilla/css/viewport_percentage_vmin_vmax_b.html",
"viewport_size": "500x700"
}
],
"css/viewport_rule.html": [
{
"path": "css/viewport_rule.html",

View file

@ -1,6 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<meta name=viewport-size content=700x500>
<link rel=match href=viewport_percentage_vmin_vmax_ref.html>
<style>
#box {
background: green;

View file

@ -1,11 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta name=viewport-size content=500x700>
<link rel=match href=viewport_percentage_vmin_vmax_ref.html>
<style>
#box {
background: green;
height: 400px;
width: 300px;
height: 50vmax;
width: 50vmin;
}
</style>
</head>

View file

@ -4,8 +4,8 @@
<style>
#box {
background: green;
height: 400px;
width: 300px;
height: 350px;
width: 250px;
}
</style>
</head>