gecko-dev/layout/reftests/writing-mode/ua-style-sheet-button-1a-ref.html
Mats Palmgren 297b9d70e1 Bug 1365614 part 3 - Backout bug 1333482 part 1-9. Removes support for [-webkit-]appearance for now b/c web compat issues. r=bz
MozReview-Commit-ID: IbwWM0FL6HF

--HG--
extra : source : bbb688fe1ba3f5201a190c6e25b693ef7272ea2d
2017-05-21 17:15:00 +08:00

53 lines
1.5 KiB
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<title>Test for logical properties of button in the UA stylesheet</title>
<style>
.v-rl { writing-mode: vertical-rl; }
.ltr, .rtl, .v-rl { border: 1px solid blue; }
.a { -moz-appearance: none; }
.ltr button,
.rtl button,
.ltr input[type="button"],
.rtl input[type="button"] {
padding: 0px 8px;
}
.v-rl button,
.v-rl input[type="button"] {
padding: 8px 0px;
}
</style>
<div class=ltr>
<button>one</button><br>
<button class=a>two</button><br>
<button disabled>three</button><br>
<button class=a disabled>four</button><br>
<input type="button" value="five"><br>
<input type="button" value="six" class=a><br>
<input type="button" value="seven" disabled><br>
<input type="button" value="eight" class=a disabled><br>
</div>
<div class=rtl dir=rtl>
<button>one</button><br>
<button class=a>two</button><br>
<button disabled>three</button><br>
<button class=a disabled>four</button><br>
<input type="button" value="five"><br>
<input type="button" value="six" class=a><br>
<input type="button" value="seven" disabled><br>
<input type="button" value="eight" class=a disabled><br>
</div>
<div class=v-rl>
<button>one</button><br>
<button class=a>two</button><br>
<button disabled>three</button><br>
<button class=a disabled>four</button><br>
<input type="button" value="five"><br>
<input type="button" value="six" class=a><br>
<input type="button" value="seven" disabled><br>
<input type="button" value="eight" class=a disabled><br>
</div>