blob: c25cdbb87a1ff2900ae74f3f4b7835595613a043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<!-- Test: when there is only one submit button and some other buttons,
there is a default -->
<link rel='stylesheet' type='text/css' href='default-submit-button-style.css'>
<body>
<form>
<button type='submit'>submit</button>
<button type='reset'>text</button>
<button type='reset'>text</button>
</form>
</body>
</html>
|