define( function() {
"use strict";
// We have to close these tags to support XHTML (#13200)
var wrapMap = {
// Table parts need to be wrapped with `
` or they're
// stripped to their contents when put in a div.
// XHTML parsers do not magically insert elements in the
// same way that tag soup parsers do, so we cannot shorten
// this by omitting or other required elements.
thead: [ 1, "" ],
col: [ 2, "" ],
tr: [ 2, "" ],
td: [ 3, "" ],
_default: [ 0, "", "" ]
};
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
wrapMap.th = wrapMap.td;
return wrapMap;
} );