2011-03-25 19:54:37 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<title>jQuery Mobile FieldContain Integration Test</title>
|
|
|
|
|
|
2011-10-04 17:54:00 +00:00
|
|
|
|
2011-04-14 20:04:47 +00:00
|
|
|
<script src="../../../js/jquery.js"></script>
|
2011-03-27 16:01:36 +00:00
|
|
|
<script src="../jquery.setNameSpace.js"></script>
|
2011-04-14 20:04:47 +00:00
|
|
|
<script src="../../../tests/jquery.testHelper.js"></script>
|
2011-12-21 19:09:53 +00:00
|
|
|
<script src="../../../external/qunit.js"></script>
|
2011-12-24 08:48:08 +00:00
|
|
|
<script src="../../../external/requirejs/require.js"></script>
|
2011-12-21 19:09:53 +00:00
|
|
|
<script>
|
|
|
|
|
$.testHelper.asyncLoad([
|
|
|
|
|
[
|
2011-12-21 22:35:14 +00:00
|
|
|
"jquery.mobile.fieldContain"
|
2011-12-21 19:09:53 +00:00
|
|
|
],
|
|
|
|
|
[ "jquery.mobile.init" ],
|
|
|
|
|
[
|
2011-12-21 19:50:46 +00:00
|
|
|
"./fieldContain_events.js"
|
2011-12-21 19:09:53 +00:00
|
|
|
]
|
|
|
|
|
]);
|
|
|
|
|
</script>
|
2011-03-27 16:01:36 +00:00
|
|
|
|
2011-10-17 20:51:45 +00:00
|
|
|
<link rel="stylesheet" href="../../../css/themes/default/"/>
|
2011-04-14 20:04:47 +00:00
|
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
2011-03-27 16:01:36 +00:00
|
|
|
|
2011-10-04 17:54:00 +00:00
|
|
|
<script src="../swarminject.js"></script>
|
2011-03-25 19:54:37 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<h1 id="qunit-header">jQuery Mobile FieldContainer Test Suite</h1>
|
|
|
|
|
<h2 id="qunit-banner"></h2>
|
|
|
|
|
<h2 id="qunit-userAgent"></h2>
|
|
|
|
|
<ol id="qunit-tests">
|
|
|
|
|
</ol>
|
|
|
|
|
|
2011-03-27 16:01:36 +00:00
|
|
|
<div data-nstest-role="page">
|
2011-10-04 17:54:00 +00:00
|
|
|
|
2011-03-25 19:54:37 +00:00
|
|
|
<!-- Basic fieldcontain test -->
|
2011-03-27 16:01:36 +00:00
|
|
|
<div id="test-fieldcontain" data-nstest-role="fieldcontain">
|
2011-03-25 19:54:37 +00:00
|
|
|
<label for="name">Text Input:</label>
|
|
|
|
|
<input type="text" name="name" id="name" value="" />
|
2011-10-04 17:54:00 +00:00
|
|
|
</div>
|
|
|
|
|
|
2011-03-25 19:54:37 +00:00
|
|
|
</div>
|
|
|
|
|
|
2011-07-20 13:35:48 +00:00
|
|
|
<div id="enhancetest">
|
|
|
|
|
<div data-nstest-role="fieldcontain">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
2011-03-25 19:54:37 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|