mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-24 01:40:25 +00:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>jQuery Mobile Checkboxradio Test Suite</title>
|
|
|
|
<script src="../../../js/jquery.js"></script>
|
|
<script src="../jquery.setNameSpace.js"></script>
|
|
<script src="../../../js/"></script>
|
|
<script src="../../../tests/jquery.testHelper.js"></script>
|
|
|
|
<link rel="stylesheet" href="../../../themes/default/"/>
|
|
<link rel="stylesheet" href="../../../external/qunit.css"/>
|
|
<script src="../../../external/qunit.js"></script>
|
|
|
|
<script src="checkboxradio_core.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1 id="qunit-header">jQuery Mobile Checkbockradio Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests">
|
|
</ol>
|
|
|
|
<div data-nstest-role="page">
|
|
<div data-nstest-role="content">
|
|
<div data-nstest-role="fieldcontain">
|
|
<fieldset data-nstest-role="controlgroup">
|
|
<legend>Agree to the terms:</legend>
|
|
<input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom"/>
|
|
<label for="checkbox-1">I agree</label>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div data-nstest-role="fieldcontain">
|
|
<fieldset data-nstest-role="controlgroup">
|
|
<legend>Agree to the terms:</legend>
|
|
<input type="checkbox" name="checkbox-2" id="checkbox-2" class="custom"/>
|
|
<label for="checkbox-2">I agree</label>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|