mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-28 18:04:46 +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.
19 lines
558 B
HTML
19 lines
558 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div id="content-page-1" data-nstest-role="page">
|
|
<a href="content-page-2.html" class="cp2">Content Page 2</a>
|
|
<a href="../app-base/base-page-1.html" class="bp1">Base Page 1</a>
|
|
<a href="../../#internal-page-1" class="ip1">Internal Page 1</a>
|
|
<a href="../../#internal-page-2" class="ip2">Internal Page 2</a>
|
|
<img src="images/content-page-1.png">
|
|
|
|
<form>
|
|
<input type="hidden" name="foo" value="1">
|
|
<input type="hidden" name="bar" value="2">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|