<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css"> | |
div:first-letter | |
{ | |
color: green; | |
font-size: 36px; | |
} | |
</style> | |
</head> | |
<body> | |
<p>Test passes if all the T and surrounding punctuation are green.</p> | |
<div>(T)est</div> | |
<div>“T”est</div> | |
<div>« T »est</div> | |
<div>« T » est</div> | |
<div>𐄀T𐄀est</div> | |
</body> | |
</html> |