jquery-mobile/tests/unit/navigation/base-tests/content/content-page-1.html
Kin Blas 0d65a0d1c5 - Fixed issue #1923 - url of form is miscalculated
- 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.
2011-06-27 10:25:13 -07:00

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>