Move multiple_css_class_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 5cb7a2ddbb
commit a4c3dbf5bb
4 changed files with 25 additions and 1 deletions

View file

@ -839,6 +839,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/multiple_css_class_a.html": [
{
"path": "css/multiple_css_class_a.html",
"references": [
[
"/_mozilla/css/multiple_css_class_b.html",
"=="
]
],
"url": "/_mozilla/css/multiple_css_class_a.html"
}
],
"css/negative_margin_uncle_a.html": [
{
"path": "css/negative_margin_uncle_a.html",
@ -3948,6 +3960,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/multiple_css_class_a.html": [
{
"path": "css/multiple_css_class_a.html",
"references": [
[
"/_mozilla/css/multiple_css_class_b.html",
"=="
]
],
"url": "/_mozilla/css/multiple_css_class_a.html"
}
],
"css/negative_margin_uncle_a.html": [
{
"path": "css/negative_margin_uncle_a.html",

View file

@ -0,0 +1,20 @@
<html>
<head>
<link rel='match' href='multiple_css_class_b.html'>
<style>
.foo {
height: 100px;
}
.bar {
width: 100px;
}
.baz {
background: green;
}
</style>
</head>
<body>
<div class="foo bar baz foobar">
</div>
</body>
</html>

View file

@ -0,0 +1,15 @@
<html>
<head>
<style>
.bar {
height: 100px;
width: 100px;
background: green;
}
</style>
</head>
<body>
<div class="foo bar baz foobar">
</div>
</body>
</html>