mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
21 lines
No EOL
1.1 KiB
HTML
21 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<meta charset="utf-8" />
|
|
<title>CSS Test: text-orientation:upright in sideways-* writing modes</title>
|
|
<link href="mailto:jfkthame@gmail.com" rel="author" title="Jonathan Kew" />
|
|
<link href="https://drafts.csswg.org/css-writing-modes-3/#text-orientation" rel="help" />
|
|
<link href="reference/text-orientation-upright-directionality-001-ref.xht" rel="match" />
|
|
<meta content="text-orientation has no effect in horizontal typographic modes" name="assert" />
|
|
</head>
|
|
<body style="font: 24px sans-serif">
|
|
<p>The two sideways-rl lines should be identical:
|
|
</p><div style="writing-mode:sideways-rl">
|
|
<p>hello العربي world עברית</p>
|
|
<p style="text-orientation:upright">hello العربي world עברית</p>
|
|
</div>
|
|
<p>The two sideways-lr lines should be identical:
|
|
</p><div style="writing-mode:sideways-lr">
|
|
<p>hello العربي world עברית</p>
|
|
<p style="text-orientation:upright">hello العربي world עברית</p>
|
|
</div>
|
|
</body></html> |