mirror of
https://github.com/servo/servo.git
synced 2025-08-18 03:45:33 +01:00
Move basic_width_px.html to wpt reftests.
This commit is contained in:
parent
0267ec7240
commit
d8c72b3d0b
4 changed files with 25 additions and 1 deletions
|
@ -423,6 +423,18 @@
|
|||
"url": "/_mozilla/css/background_style_attr.html"
|
||||
}
|
||||
],
|
||||
"css/basic_width_px.html": [
|
||||
{
|
||||
"path": "css/basic_width_px.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/basic_width_em.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/basic_width_px.html"
|
||||
}
|
||||
],
|
||||
"css/class-namespaces.html": [
|
||||
{
|
||||
"path": "css/class-namespaces.html",
|
||||
|
@ -1628,6 +1640,18 @@
|
|||
"url": "/_mozilla/css/background_style_attr.html"
|
||||
}
|
||||
],
|
||||
"css/basic_width_px.html": [
|
||||
{
|
||||
"path": "css/basic_width_px.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/basic_width_em.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/basic_width_px.html"
|
||||
}
|
||||
],
|
||||
"css/class-namespaces.html": [
|
||||
{
|
||||
"path": "css/class-namespaces.html",
|
||||
|
|
16
tests/wpt/mozilla/tests/css/basic_width_em.html
Normal file
16
tests/wpt/mozilla/tests/css/basic_width_em.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
html {
|
||||
font-size: 20px;
|
||||
}
|
||||
p {
|
||||
width: 10em;
|
||||
border: solid 1px black;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>hello, wide world</p>
|
||||
</body>
|
||||
</html>
|
17
tests/wpt/mozilla/tests/css/basic_width_px.html
Normal file
17
tests/wpt/mozilla/tests/css/basic_width_px.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel=match href=basic_width_em.html>
|
||||
<style>
|
||||
html {
|
||||
font-size: 20px;
|
||||
}
|
||||
p {
|
||||
width: 200px;
|
||||
border: solid 1px black;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>hello, wide world</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue