mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
19 lines
622 B
HTML
19 lines
622 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Set and unset dir="foopy"</title>
|
|
<script type="text/javascript" src="setDir.js"></script>
|
|
<style>
|
|
textarea { resize: none; }
|
|
</style>
|
|
</head>
|
|
<body onload="removeAllDirAttribute()">
|
|
<div><input type="text" value="אבג ABC" id="set0" dir="foopy"></div>
|
|
<div><span id="set1" dir="foopy">אבג ABC</span></div>
|
|
<div><textarea id="set2" dir="foopy">אבג ABC</textarea></div>
|
|
<div><button id="set3" dir="foopy">אבג ABC</button></div>
|
|
<div><bdi id="set4" dir="foopy">אבג ABC</bdi></div>
|
|
</body>
|
|
</html>
|