tenfourfox/layout/reftests/bidi/151407-2-auto.html

17 lines
389 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html dir="auto">
<head>
<meta charset="utf-8">
<title>Test GetDir() for documents</title>
<script type="text/javascript">
function fill() {
span = document.getElementById("span0");
span.innerHTML = document.dir;
}
</script>
</head>
<body onLoad="fill()">
<div>getDir on document returns "<span id="span0"></span>"</div>
</body>
</html>