blob: e2a023b5306d8396dd198ab4be680b873d30c7a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title>Test unicode-bidi in form controls</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-8-i">
</head>
<body>
<p>‭����� �� ����� ����� �����‬</p>
<p>
<textarea rows="3" cols="80">���� �� �� ����� ����� �����</textarea><br>
<input type="text" size="80" value="���� �� �� ����� ����� �����"><br>
<input type="button" value="���� �� �� ����� ����� �����"><br>
<select size="6">
<option selected>�����</option>
<optgroup label="���">
<option>��</option>
<option>������</option>
</optgroup>
<optgroup label="�����">
<option>������</option>
</optgroup>
</select><br>
</body>
</html>
|