Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <!-- Test: when there is no submit button and one is added, |
michael@0 | 4 | there is a default submit button --> |
michael@0 | 5 | <link rel='stylesheet' type='text/css' href='default-submit-button-style.css'> |
michael@0 | 6 | <script type="text/javascript"> |
michael@0 | 7 | function onLoadHandler() |
michael@0 | 8 | { |
michael@0 | 9 | document.getElementById('b1').type = "submit"; |
michael@0 | 10 | document.documentElement.className = ''; |
michael@0 | 11 | } |
michael@0 | 12 | </script> |
michael@0 | 13 | |
michael@0 | 14 | <body onload="onLoadHandler();"> |
michael@0 | 15 | <form> |
michael@0 | 16 | <button type='submit' id='b1'>submit</button> |
michael@0 | 17 | <button type='reset'>text</button> |
michael@0 | 18 | </form> |
michael@0 | 19 | </body> |
michael@0 | 20 | </html> |