tenfourfox/layout/reftests/writing-mode/ua-style-sheet-textarea-1b-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

28 lines
507 B
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for logical properties of textarea in the UA stylesheet</title>
<style>
.v-rl { writing-mode: vertical-rl; }
.ltr, .rtl, .v-rl { border: 1px solid blue; }
.ltr textarea, .rtl textarea {
margin: 1px 0;
padding: 2px 1px;
}
.v-rl textarea {
margin: 0 1px;
padding: 1px 2px;
}
</style>
<div class=ltr>
<textarea>hello</textarea>
</div>
<div class=rtl dir=rtl>
<textarea>hello</textarea>
</div>
<div class=v-rl>
<textarea>hello</textarea>
</div>