jquery-ui/tests/unit/dialog/dialog.html

35 lines
1.2 KiB
HTML
Raw Normal View History

2011-08-03 21:12:44 +00:00
<!doctype html>
2009-01-09 11:47:42 +00:00
<html lang="en">
<head>
2011-08-03 21:12:44 +00:00
<meta charset="utf-8">
2009-01-09 11:47:42 +00:00
<title>jQuery UI Dialog Test Suite</title>
<script src="../../../external/requirejs/require.js"></script>
<script src="../../lib/css.js" data-modules="core button dialog"></script>
<script src="../../lib/bootstrap.js" data-widget="dialog" data-no-back-compat="true"></script>
2009-01-09 11:47:42 +00:00
</head>
<body>
2014-02-20 16:02:23 +00:00
<div id="qunit"></div>
<div id="qunit-fixture">
<div id="dialog1"></div>
<div id="dialog2"></div>
<div id="form-dialog" title="Profile Information">
<!-- create a spacer to ensure there's enough space to scroll -->
<div style="height: 250px;">...</div>
<fieldset>
<legend>Please share some personal information</legend>
<label for="favorite-animal">Your favorite animal</label><input id="favorite-animal">
<label for="favorite-color">Your favorite color</label><input id="favorite-color">
</fieldset>
<div role="group" aria-describedby="section2">
<p id="section2">Some more (optional) information</p>
<label for="favorite-food">Favorite food</label><input id="favorite-food">
</div>
</div>
<div class="wrap" id="wrap1"></div>
<div class="wrap" id="wrap2"></div>
2011-08-03 21:12:44 +00:00
</div>
2009-01-09 11:47:42 +00:00
</body>
</html>