mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
986f49d464
--HG-- rename : layout/reftests/forms/textarea-rtl.html => layout/reftests/forms/textarea-in-dynamic-rtl-doc.html extra : rebase_source : 444e9dfa75be1e880679c405afd90cfc4031131c
19 lines
423 B
HTML
19 lines
423 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title></title>
|
|
</head>
|
|
<body style="text-align: left">
|
|
<textarea cols=20 rows=4></textarea>
|
|
<script>
|
|
onload = function() {
|
|
setTimeout(function() {
|
|
document.dir = "rtl";
|
|
document.documentElement.removeAttribute("class");
|
|
});
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|