Move border_code_tag.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-16 12:51:11 +02:00
parent 107c59d5ca
commit e619617239
4 changed files with 25 additions and 1 deletions

View file

@ -635,6 +635,18 @@
"url": "/_mozilla/css/border_black_ridge.html"
}
],
"css/border_code_tag.html": [
{
"path": "css/border_code_tag.html",
"references": [
[
"/_mozilla/css/border_code_tag_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_code_tag.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",
@ -2796,6 +2808,18 @@
"url": "/_mozilla/css/border_black_ridge.html"
}
],
"css/border_code_tag.html": [
{
"path": "css/border_code_tag.html",
"references": [
[
"/_mozilla/css/border_code_tag_ref.html",
"=="
]
],
"url": "/_mozilla/css/border_code_tag.html"
}
],
"css/class-namespaces.html": [
{
"path": "css/class-namespaces.html",

View file

@ -0,0 +1,13 @@
<html>
<head>
<link rel=match href=border_code_tag_ref.html>
<style>
code {
border: 2px solid #ccc;
}
</style>
</head>
<body>
<code>Quotes: &quot;&quot;.</code>
</body>
</html>

View file

@ -0,0 +1,12 @@
<html>
<head>
<style>
code {
border: 2px solid #ccc;
}
</style>
</head>
<body>
<code>Quotes: "".</code>
</body>
</html>