blob: 1f446f7d73648fa8e75f9f9d69382e49ab153e58 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001define( function() {
2
3"use strict";
4
5// We have to close these tags to support XHTML (#13200)
6var wrapMap = {
7
8 // Support: IE <=9 only
9 option: [ 1, "<select multiple='multiple'>", "</select>" ],
10
11 // XHTML parsers do not magically insert elements in the
12 // same way that tag soup parsers do. So we cannot shorten
13 // this by omitting <tbody> or other required elements.
14 thead: [ 1, "<table>", "</table>" ],
15 col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
16 tr: [ 2, "<table><tbody>", "</tbody></table>" ],
17 td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
18
19 _default: [ 0, "", "" ]
20};
21
22// Support: IE <=9 only
23wrapMap.optgroup = wrapMap.option;
24
25wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
26wrapMap.th = wrapMap.td;
27
28return wrapMap;
29} );