mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
460 B
HTML
21 lines
460 B
HTML
<html>
|
|
<head>
|
|
<title>Button sizing testcase</title>
|
|
<style>
|
|
/* input, button {font-family: monospace} */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="submit" value="l">
|
|
<input type="submit" value="aaaaaaaaaaaaaaaaaaaa">
|
|
<p>
|
|
<input type="reset" value="l">
|
|
<input type="reset" value="aaaaaaaaaaaaaaaaaaaa">
|
|
<p>
|
|
<input type="button" value="l">
|
|
<input type="button" value="aaaaaaaaaaaaaaaaaaaa">
|
|
<p>
|
|
<button>l</button>
|
|
<button>aaaaaaaaaaaaaaaaaaaa</button>
|
|
</body>
|
|
</html> |