mirror of
https://github.com/servo/servo.git
synced 2025-08-20 04:45:33 +01:00
Support 'font-style: oblique'.
This commit is contained in:
parent
58c1b121a7
commit
80a6f0ae08
4 changed files with 44 additions and 1 deletions
21
tests/ref/font_style_ref.html
Normal file
21
tests/ref/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