mirror of
https://github.com/servo/servo
synced 2026-05-14 02:47:14 +02:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
24 lines
806 B
HTML
24 lines
806 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta charset="UTF-8">
|
|
<title>dir() selector reference</title>
|
|
<link href="mailto:aschen@mozilla.com" rel="author" title="Astley Chen">
|
|
<link href="https://www.mozilla.org" rel="author" title="Mozilla">
|
|
<style>
|
|
div { text-align: left; }
|
|
.ltr { direction: ltr; color: blue; }
|
|
.rtl { direction: rtl; color: lime; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="ltr">This element is ltr. <span>This span should
|
|
inherit dir from the parent. <span>This span should inherit dir
|
|
from the grandparent.</span></span>
|
|
</div>
|
|
<div class="rtl">This element is rtl. <span>This span should
|
|
inherit dir from the parent. <span>This span should inherit dir
|
|
from the grandparent.</span></span>
|
|
</div>
|
|
|
|
|
|
</body></html> |