haikuwebkit/LayoutTests/fast/css-generated-content/initial-letter-first-line-w...

23 lines
328 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Ahem;
}
div {
width: 200px;
border-right: 1px solid red;
}
div::first-letter {
-webkit-initial-letter: 5;
color: white;
}
</style>
</head>
<body>
<div>Text should wrap at the red border.</div>
</body>
</html>