Move font_style.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 5892aa71d5
commit 5455821701
4 changed files with 25 additions and 1 deletions

View file

@ -803,6 +803,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/font_style.html": [
{
"path": "css/font_style.html",
"references": [
[
"/_mozilla/css/font_style_ref.html",
"=="
]
],
"url": "/_mozilla/css/font_style.html"
}
],
"css/img_block_display_a.html": [
{
"path": "css/img_block_display_a.html",
@ -4776,6 +4788,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/font_style.html": [
{
"path": "css/font_style.html",
"references": [
[
"/_mozilla/css/font_style_ref.html",
"=="
]
],
"url": "/_mozilla/css/font_style.html"
}
],
"css/img_block_display_a.html": [
{
"path": "css/img_block_display_a.html",

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='font_style_ref.html'>
<style>
p.normal {
font-style: normal;
}
p.italic {
font-style: italic;
}
</style>
</head>
<body>
<p class="normal">This is a paragraph, normal.</p>
<p class="italic">This is a paragraph, italic(oblique).</p>
</body>
</html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<style>
p.normal {
font-style: normal;
}
p.oblique {
font-style: oblique;
}
</style>
</head>
<body>
<p class="normal">This is a paragraph, normal.</p>
<p class="oblique">This is a paragraph, italic(oblique).</p>
</body>
</html>