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

16 lines
289 B
HTML

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