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