mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
5bc00870a9
content. Add some first-letter tests, and a few assertions. Bug 367650, r+sr=roc
16 lines
292 B
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>
|