blob: d3ed33c040dd17dac4789831181948881b6bd89c (
plain)
1
2
3
4
5
6
7
8
|
define([
"../var/support"
], function( support ) {
// window.document is used here as it's before the sandboxed document
support.createHTMLDocument = !!window.document.implementation.createHTMLDocument;
return support;
});
|