mirror of
https://github.com/servo/servo.git
synced 2025-09-08 22:18:23 +01:00
Move border_radius_shorthand_a.html to wpt reftests.
This commit is contained in:
parent
caf9d0e3cd
commit
95566ec622
4 changed files with 25 additions and 1 deletions
|
@ -731,6 +731,18 @@
|
|||
"url": "/_mozilla/css/border_radius_overlapping_a.html"
|
||||
}
|
||||
],
|
||||
"css/border_radius_shorthand_a.html": [
|
||||
{
|
||||
"path": "css/border_radius_shorthand_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/border_radius_shorthand_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/border_radius_shorthand_a.html"
|
||||
}
|
||||
],
|
||||
"css/class-namespaces.html": [
|
||||
{
|
||||
"path": "css/class-namespaces.html",
|
||||
|
@ -4524,6 +4536,18 @@
|
|||
"url": "/_mozilla/css/border_radius_overlapping_a.html"
|
||||
}
|
||||
],
|
||||
"css/border_radius_shorthand_a.html": [
|
||||
{
|
||||
"path": "css/border_radius_shorthand_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/border_radius_shorthand_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/border_radius_shorthand_a.html"
|
||||
}
|
||||
],
|
||||
"css/class-namespaces.html": [
|
||||
{
|
||||
"path": "css/class-namespaces.html",
|
||||
|
|
23
tests/wpt/mozilla/tests/css/border_radius_shorthand_a.html
Normal file
23
tests/wpt/mozilla/tests/css/border_radius_shorthand_a.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||||
<meta content="utf-8" http-equiv="encoding">
|
||||
<link rel=match href=border_radius_shorthand_ref.html>
|
||||
<style type="text/css">
|
||||
div.box {
|
||||
background: white;
|
||||
border-width: 15px 15px 15px 15px;
|
||||
border-color: yellow red green blue;
|
||||
border-style: solid;
|
||||
border-radius: 100px 150px / 50px 100px 200px;
|
||||
height: 500px;
|
||||
width: 500px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Shorthand Border Radius - Elliptical</h2>
|
||||
<div class="box"></div><br>
|
||||
</body>
|
||||
</html>
|
25
tests/wpt/mozilla/tests/css/border_radius_shorthand_ref.html
Normal file
25
tests/wpt/mozilla/tests/css/border_radius_shorthand_ref.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||||
<meta content="utf-8" http-equiv="encoding">
|
||||
<style type="text/css">
|
||||
div.box {
|
||||
background: white;
|
||||
border-width: 15px 15px 15px 15px;
|
||||
border-color: yellow red green blue;
|
||||
border-style: solid;
|
||||
border-top-left-radius: 100px 50px;
|
||||
border-top-right-radius: 150px 100px;
|
||||
border-bottom-right-radius: 100px 200px;
|
||||
border-bottom-left-radius: 150px 100px;
|
||||
height: 500px;
|
||||
width: 500px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Shorthand Border Radius - Elliptical</h2>
|
||||
<div class="box"></div><br>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue