diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-05-10 13:32:21 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2016-05-26 09:15:48 -0400 |
commit | 04b670e6cc6b25ffe595c665ea86929f71f78b50 (patch) | |
tree | 25ad0a0b6ebc60a7725916193ec6118fe64a43b8 /tests/unit/controlgroup/controlgroup.html | |
parent | 83ec5e8016dea46694e48027887c902ab9075b48 (diff) | |
download | jquery-ui-04b670e6cc6b25ffe595c665ea86929f71f78b50.tar.gz jquery-ui-04b670e6cc6b25ffe595c665ea86929f71f78b50.zip |
Controlgroup: Don't remove existing classes classes
unless its a corner class
Fixes #14960
Diffstat (limited to 'tests/unit/controlgroup/controlgroup.html')
-rw-r--r-- | tests/unit/controlgroup/controlgroup.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/unit/controlgroup/controlgroup.html b/tests/unit/controlgroup/controlgroup.html index 9767381ac..9983232ec 100644 --- a/tests/unit/controlgroup/controlgroup.html +++ b/tests/unit/controlgroup/controlgroup.html @@ -36,6 +36,27 @@ <option>Slow</option> </select> </div> + <select id="select-sanatize"> + <option>Fast</option> + <option>Medium</option> + <option>Slow</option> + </select> + <div class="controlgroup-pre"> + <select id="select-pre"> + <option>Fast</option> + <option>Medium</option> + <option>Slow</option> + </select> + <button>Button with icon on the bottom</button> + </div> + <div class="controlgroup-refresh"> + <select id="select-refresh"> + <option>Fast</option> + <option>Medium</option> + <option>Slow</option> + </select> + <button>Button with icon on the bottom</button> + </div> </div> </body> </html> |