<!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 are green, as well as punctuation elements when they are adjacent to a letter (without spaces)</p>
<div>Test</div>
<div> Test </div>
<div>(T)est</div>
<div> (T)est</div>
<div>“T”est</div>
<div>&Test</div>
<div> &Test</div>
<div>𐄀T𐄀est</div>
<div>၎̀T̀၎̀est</div>
<div>T&S</div>
<div>T & S</div>
<div>T & S</div>
<div>« S »</div>
<div>« S » </div>
<div>• </div>
<div> • </div>
</body>
</html>