Move inline_background_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-10 11:16:10 +01:00
parent 32a91bc656
commit 7d376bfe81
4 changed files with 25 additions and 1 deletions

View file

@ -1763,6 +1763,18 @@
"url": "/_mozilla/css/inline_absolute_out_of_flow_a.html"
}
],
"css/inline_background_a.html": [
{
"path": "css/inline_background_a.html",
"references": [
[
"/_mozilla/css/inline_background_ref.html",
"!="
]
],
"url": "/_mozilla/css/inline_background_a.html"
}
],
"css/inline_block_baseline_a.html": [
{
"path": "css/inline_block_baseline_a.html",
@ -6696,6 +6708,18 @@
"url": "/_mozilla/css/inline_absolute_out_of_flow_a.html"
}
],
"css/inline_background_a.html": [
{
"path": "css/inline_background_a.html",
"references": [
[
"/_mozilla/css/inline_background_ref.html",
"!="
]
],
"url": "/_mozilla/css/inline_background_a.html"
}
],
"css/inline_block_baseline_a.html": [
{
"path": "css/inline_block_baseline_a.html",

View file

@ -0,0 +1,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link rel=mismatch href=inline_background_ref.html>
<style type="text/css">
.white {
color: white;
}
.bggreen {
background-color: green;
}
body {
margin: 0;
}
</style>
</head>
<body><span class="bggreen white">White text on a green background</span></body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
.white {
color: white;
}
body {
margin: 0;
}
</style>
</head>
<body><span class="white">White text on a green background</span></body>
</html>