mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-29 10:24:45 +00:00
- Added code to calculate whether to choose the documentUrl or the page Url in the case where an action is not specified on a form element. - Fixed bug in the navigation "submit" handler where an error was being thrown if "type" was not specified. - Fixed typo "diabled" id typos in tests/unit/navigation/index.html. - Added tests for form submissions with no action in both base and non-base specified cases.
15 lines
287 B
HTML
15 lines
287 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div id="external-form-no-action-page" data-nstest-role="page">
|
|
<div data-nstest-role="content">
|
|
<form>
|
|
<input type="hidden" name="foo" value="1">
|
|
<input type="hidden" name="bar" value="2">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|