mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
349 B
HTML
24 lines
349 B
HTML
|
<!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>
|