blob: c77596824b9fee72a22450b0dc12d5cf8c50b01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html dir="rtl">
<head>
<meta charset="utf-8">
<title>Test SetDir() for documents</title>
<script type="text/javascript">
function fill() {
document.dir = "foopy"
span = document.getElementById("span0");
span.innerHTML = document.dir;
}
</script>
</head>
<body onLoad="fill()">
<div>getDir on document after setDir returns "<span id="span0"></span>"</div>
</body>
</html>
|