mirror of
https://github.com/servo/servo.git
synced 2025-09-22 12:50:08 +01:00
Move font_style.html to wpt reftests.
This commit is contained in:
parent
5892aa71d5
commit
5455821701
4 changed files with 25 additions and 1 deletions
|
@ -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",
|
||||
|
|
22
tests/wpt/mozilla/tests/css/font_style.html
Normal file
22
tests/wpt/mozilla/tests/css/font_style.html
Normal 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>
|
||||
|
21
tests/wpt/mozilla/tests/css/font_style_ref.html
Normal file
21
tests/wpt/mozilla/tests/css/font_style_ref.html
Normal 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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue