diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-10 14:45:59 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-15 00:38:40 +0200 |
commit | 9887579b61972647f1478e64c5d7987f9d9cb039 (patch) | |
tree | c592a65dd9a8f9a6a7a3a31892eec299e1799a80 /tests/unit/jquery-patch/all.html | |
parent | f90eab84b5e9a65ce62f18106e3db0ee316913f6 (diff) | |
download | jquery-ui-9887579b61972647f1478e64c5d7987f9d9cb039.tar.gz jquery-ui-9887579b61972647f1478e64c5d7987f9d9cb039.zip |
All: Stop relying on jquery-patch.js internally, add tests
Avoid relying on jQuery patches. Instead:
* use `CSS.escape` instead of `jQuery.escapeSelector`
* use `.filter()` with a proper handler instead of `.even()`
Keep `jquery-patch.js` for backwards compatibility, though.
Also, add tests for jquery-patch.
Ref gh-2249
Diffstat (limited to 'tests/unit/jquery-patch/all.html')
-rw-r--r-- | tests/unit/jquery-patch/all.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/unit/jquery-patch/all.html b/tests/unit/jquery-patch/all.html new file mode 100644 index 000000000..d26b50373 --- /dev/null +++ b/tests/unit/jquery-patch/all.html @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Form Reset Mixin Test Suite</title> + + <script src="../../../external/jquery/jquery.js"></script> + + <link rel="stylesheet" href="../../../external/qunit/qunit.css"> + <link rel="stylesheet" href="../../lib/vendor/qunit-composite/qunit-composite.css"> + <script src="../../../external/qunit/qunit.js"></script> + <script src="../../lib/vendor/qunit-composite/qunit-composite.js"></script> + <script src="../subsuite.js"></script> + + <script> + testAllVersions( "jquery-patch" ); + </script> +</head> +<body> + +<div id="qunit"></div> +<div id="qunit-fixture"> + +</div> +</body> +</html> |