gecko/layout/reftests/first-letter/quote-1c.html

16 lines
292 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { color: black; }
div::first-letter { color: green; }
span:before { content: open-quote "This "; }
span:after { content: close-quote; }
span { quotes: '"' '"'; }
</style>
</head>
<body>
<div><span>is text</span></div>
</body>
</html>