bzbarsky%mit.edu 51445fc89c Adding some regression tests
git-svn-id: svn://10.0.0.236/trunk@195332 18797224-902f-48f8-a5cc-f745e15eee43
2006-04-25 03:53:11 +00:00

36 lines
1.0 KiB
HTML

<html>
<head>
</head>
<body>
<h1>Type = button</h1>
<p><input type="button" style="text-align: left"
value="Left-aligned, auto width"></p>
<p><input type="button" style="text-align: left;width: 75%"
value="Left-aligned, 75% width"></p>
<p><input type="button" style="text-align: left;display: block"
value="Left-aligned, block display, auto width"></p>
<p><input type="button" style="text-align: left;display: block;width: 75%"
value="Left-aligned, block display, 75% width"></p>
<h1>Type = submit</h1>
<p><input type="submit" style="text-align: left"
value="Left-aligned, auto width"></p>
<p><input type="submit" style="text-align: left;width: 75%"
value="Left-aligned, 75% width"></p>
<p><input type="submit" style="text-align: left;display: block"
value="Left-aligned, block display, auto width"></p>
<p><input type="submit" style="text-align: left;display: block;width: 75%"
value="Left-aligned, block display, 75% width"></p>
</body>
</html>