tenfourfox/layout/reftests/forms/textarea/rtl-dynamic-attr.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
439 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").setAttribute("dir", "rtl");
document.documentElement.removeAttribute("class");
});
};
</script>
</body>
</html>