Move border_radius_zero_sizes_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-20 15:21:22 +02:00
parent 95566ec622
commit 467bf11595
4 changed files with 25 additions and 1 deletions

View file

@ -743,6 +743,18 @@
"url": "/_mozilla/css/border_radius_shorthand_a.html"
}
],
"css/border_radius_zero_sizes_a.html": [
{
"path": "css/border_radius_zero_sizes_a.html",
"references": [
[
"/_mozilla/css/border_radius_zero_sizes_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_radius_zero_sizes_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -4548,6 +4560,18 @@
"url": "/_mozilla/css/border_radius_shorthand_a.html"
}
],
"css/border_radius_zero_sizes_a.html": [
{
"path": "css/border_radius_zero_sizes_a.html",
"references": [
[
"/_mozilla/css/border_radius_zero_sizes_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_radius_zero_sizes_a.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,11 @@
<html>
<head>
<link rel=match href=border_radius_zero_sizes_ref.html>
</head>
<body>
<div style="border-top: 20px solid black; border-radius: 5px"></div>
<div style="border-right: 30px solid black; border-radius: 15px; height: 30px"></div>
<div style="border-bottom: 20px solid black; border-radius: 5px"></div>
<div style="border-left: 30px solid black; border-radius: 15px; height: 30px"></div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<html>
<head>
</head>
<body>
<div style="border: 10px solid black; border-top-left-radius: 5px; border-top-right-radius: 5px"></div>
<div style="border-right: 30px solid black; border-top-right-radius: 15px; border-bottom-right-radius: 15px; height: 30px"></div>
<div style="border: 10px solid black; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px"></div>
<div style="border-left: 30px solid black; border-bottom-left-radius: 15px; border-top-left-radius: 15px; height: 30px"></div>
</body>
</html>