mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
27 lines
899 B
HTML
27 lines
899 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: :first-letter applied to joined text</title>
|
|
<link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content=":first-letter applied to joined text should not break joining">
|
|
<style type="text/css">
|
|
.test:first-letter {
|
|
color: blue;
|
|
}
|
|
.test, .control {
|
|
font-size: 2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>The rightmost half of the rightmost compound on the first line below should be blue. Except for color the two lines below should be identical.</p>
|
|
|
|
<p class="test">بائعة</p>
|
|
|
|
<p class="control">بائعة</p>
|
|
|
|
</body>
|
|
</html> |