Move basic_width_px.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-12 16:25:45 +02:00
parent 0267ec7240
commit d8c72b3d0b
4 changed files with 25 additions and 1 deletions

View file

@ -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",

View 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>

View 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>