blob: 9ccaf760791145a46db21574d1dd64d34eb90c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: when there is a submit button which is changed,
there is no default -->
<link rel='stylesheet' type='text/css' href='default-submit-button-style.css'>
<script type="text/javascript">
function onLoadHandler()
{
document.getElementById('b1').type = "reset";
document.documentElement.className = '';
}
</script>
<body onload="onLoadHandler();">
<form>
<button type='submit' id='b1'>submit</button>
<button type='reset'>text</button>
</form>
</body>
</html>
|