mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
483 B
HTML
24 lines
483 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
<html>
|
|
<head>
|
|
<title>Button sizing testcase -- strict</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<input type="submit" value="l">
|
|
<input type="submit" value="aaaaaaaaaaaaaaaaaaaa">
|
|
</p>
|
|
<p>
|
|
<input type="reset" value="l">
|
|
<input type="reset" value="aaaaaaaaaaaaaaaaaaaa">
|
|
</p>
|
|
<p>
|
|
<input type="button" value="l">
|
|
<input type="button" value="aaaaaaaaaaaaaaaaaaaa">
|
|
</p>
|
|
<p>
|
|
<button>l</button>
|
|
<button>aaaaaaaaaaaaaaaaaaaa</button>
|
|
</p>
|
|
</body>
|
|
</html> |