blob: 89d3f18a3f808f5000067ca591e12009d9d93cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<style>
div {
border: 1px solid black;
font-family: monospace;
width: 10ch;
}
</style>
</head>
<body onload="document.getElementById('r').style.direction = 'rtl';">
<div>
<span id="r">
<span style="unicode-bidi: bidi-override; color: blue;">abcd abcd abcd</span>
foo
</span>
</div>
</body>
</html>
|