mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
46137fdf89
The ordered map is a jQuery extension for creating a collection which can be accessed both as an ordered list and as a map. This collection can be used to store various objects including entities, fields, columns, and dialogs. A test suite for this class has been added as well. Ticket #1232
28 lines
940 B
HTML
Executable File
28 lines
940 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Widget Test Suite</title>
|
|
<link rel="stylesheet" href="qunit.css" type="text/css" media="screen">
|
|
<script type="text/javascript" src="qunit.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="../jquery.js"></script>
|
|
<script type="text/javascript" src="../jquery.ba-bbq.js"></script>
|
|
<script type="text/javascript" src="../jquery-ui.js"></script>
|
|
<script type="text/javascript" src="../jquery.ordered-map.js"></script>
|
|
<script type="text/javascript" src="../ipa.js"></script>
|
|
<script type="text/javascript" src="../widget.js"></script>
|
|
|
|
<script type="text/javascript" src="widget_tests.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1 id="qunit-header">Widget Test Suite</h1>
|
|
<h2 id="qunit-banner"></h2>
|
|
<div id="qunit-testrunner-toolbar"></div>
|
|
<h2 id="qunit-userAgent"></h2>
|
|
<ol id="qunit-tests"></ol>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|