Files
servo/tests/wpt/css-tests/selectors-4_dev/html/reference/dir-style-03-ref.htm
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

18 lines
539 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 { color: blue; direction: ltr }
.rtl { color: lime; direction: rtl }
</style>
</head>
<body>
<div class="rtl">This element is rtl.</div>
<div class="ltr">This element has default direction.</div>
</body></html>