This commit is contained in:
bzbarsky@mit.edu 2008-02-20 11:55:22 -08:00
Родитель 8bdbd9dbd2
Коммит f31acd8849
5 изменённых файлов: 127 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { width: 16em; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
</style>
</head>
<body>
<div>
<input type="button" value="input" class="left">
</div>
<div>
<button class="left">button</button>
</div>
<div>
<input type="button" value="input" class="right">
</div>
<div>
<button class="right">button</button>
</div>
<div>
<input type="button" value="input" class="center">
</div>
<div>
<button class="center">button</button>
</div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { min-width: 16em; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
</style>
</head>
<body>
<div>
<input type="button" value="input" class="left">
</div>
<div>
<button class="left">button</button>
</div>
<div>
<input type="button" value="input" class="right">
</div>
<div>
<button class="right">button</button>
</div>
<div>
<input type="button" value="input" class="center">
</div>
<div>
<button class="center">button</button>
</div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { width: 8em; min-width: 16em; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
</style>
</head>
<body>
<div>
<input type="button" value="input" class="left">
</div>
<div>
<button class="left">button</button>
</div>
<div>
<input type="button" value="input" class="right">
</div>
<div>
<button class="right">button</button>
</div>
<div>
<input type="button" value="input" class="center">
</div>
<div>
<button class="center">button</button>
</div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
input, button { width: 32em; max-width: 16em; }
.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
</style>
</head>
<body>
<div>
<input type="button" value="input" class="left">
</div>
<div>
<button class="left">button</button>
</div>
<div>
<input type="button" value="input" class="right">
</div>
<div>
<button class="right">button</button>
</div>
<div>
<input type="button" value="input" class="center">
</div>
<div>
<button class="center">button</button>
</div>
</body>
</html>

Просмотреть файл

@ -115,6 +115,9 @@ fails == 134706-6b.html 134706-6b-ref.html # bug 363248 (via bug 414193, anyway)
== 180085-2.html 180085-2-ref.html
== 185388-1.html 185388-1-ref.html
== 201215-1.html 201215-1-ref.html
== 201293-1a.html 201293-1-ref.html
== 201293-1b.html 201293-1-ref.html
== 201293-1c.html 201293-1-ref.html
== 206516-1.html 206516-1-ref.html
== 210876-1.html 210876-1-ref.html
== 212563-1.html 212563-1-ref.html