tenfourfox/layout/reftests/writing-mode/ua-style-sheet-textarea-1b-ref.html

28 lines
507 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>