diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-03-29 00:18:07 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-05-10 10:53:57 +0200 |
commit | 0977ea1b48355bfddc98cb16673ea8b627904dab (patch) | |
tree | f80a53db718d477331b43156c5ea7642464e5b77 /demos/autocomplete/xml.html | |
parent | f8990e68e2d3900e7bb16926cc2d86ae97a3f0fa (diff) | |
download | jquery-ui-0977ea1b48355bfddc98cb16673ea8b627904dab.tar.gz jquery-ui-0977ea1b48355bfddc98cb16673ea8b627904dab.zip |
Demos:Tests: Avoid self-closing HTML tags
Self-closing tags are reported by newer versions of the htmllint
Grunt plugin. They also don't make sense in our HTML files
since they are not XHTML-compliant and they run in HTML mode
anyway.
Ref gh-2157
Diffstat (limited to 'demos/autocomplete/xml.html')
-rw-r--r-- | demos/autocomplete/xml.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/autocomplete/xml.html b/demos/autocomplete/xml.html index d86ca1563..47e70793d 100644 --- a/demos/autocomplete/xml.html +++ b/demos/autocomplete/xml.html @@ -47,10 +47,10 @@ <div class="ui-widget"> <label for="birds">London matches: </label> - <input id="birds" /> + <input id="birds"> </div> -<div class="ui-widget" style="margin-top:2em; font-family:Arial"> +<div class="ui-widget" style="margin-top:2em; font-family: Arial, sans-serif"> Result: <div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div> </div> |