tenfourfox/layout/reftests/bugs/1130231-1-button-padding-rtl.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

33 lines
549 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bug 1130231</title>
<style type="text/css">
div {
width: 300px;
height: 50px;
border: 1px solid blue;
margin: 10px;
padding: 2px;
}
.inner {
padding-left: 100px;
padding-right: 50px;
border: 5px solid black;
border-left: 20px solid red;
border-right: 10px solid green;
}
</style>
</head>
<html>
<body>
<div>
<button class="inner">|button|</button>
</div>
<div dir=rtl>
<button class="inner">|button|</button>
</div>
</body>
</html>