gecko/layout/reftests/forms/textarea-in-dynamic-rtl-doc.html
Ehsan Akhgari 75e267cec2 Bug 581536 - Part 2: Reconstruct the document element frames when the dir attribute is set on the document; r=bzbarsky a=blocking-betaN+
--HG--
rename : layout/reftests/forms/textarea-rtl.html => layout/reftests/forms/textarea-in-dynamic-rtl-doc.html
extra : rebase_source : 444e9dfa75be1e880679c405afd90cfc4031131c
2010-12-15 12:26:54 -08:00

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>