mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
7b863aeb19
--HG-- rename : layout/reftests/writing-mode/ua-style-sheet-textarea-1a-ref.html => layout/reftests/writing-mode/ua-style-sheet-textarea-1c-ref.html
31 lines
605 B
HTML
31 lines
605 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; }
|
|
|
|
/* Vista or later wants 2px padding on textareas by default,
|
|
see nsNativeThemeWin::GetWidgetPadding(). */
|
|
textarea {
|
|
padding: 2px;
|
|
}
|
|
.ltr textarea, .rtl textarea {
|
|
margin: 1px 0;
|
|
}
|
|
.v-rl textarea {
|
|
margin: 0 1px;
|
|
}
|
|
</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>
|