mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
17 lines
421 B
HTML
17 lines
421 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Bug 1007278: test all types of buttons look similar when disabled</title>
|
|
</head>
|
|
<body>
|
|
<button>Some text</button>
|
|
<input type="button" value="Some text">
|
|
<input type="reset">
|
|
<input type="submit">
|
|
<br>
|
|
<button disabled>Some text</button>
|
|
<input disabled type="button" value="Some text">
|
|
<input disabled type="reset">
|
|
<input disabled type="submit">
|
|
</body>
|
|
</html>
|