mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
20 lines
670 B
HTML
20 lines
670 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>text-align: start, direction: ltr</title>
|
|
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
|
|
<style type='text/css'>
|
|
.test, .ref { border: 1px solid orange; margin: 20px; width: 300px; color: orange; font: 25px/1 Ahem; text-align: left; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id='instructions'>Test passes if the shading in both orange boxes is identical.</div>
|
|
<div style="direction: rtl;">
|
|
<div class="ref">REF REF REF REF REF REF REF REF</div>
|
|
<div class="ref">REF REF REF REF REF REF REF REF</div>
|
|
</div>
|
|
</body>
|
|
</html>
|