mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
23 lines
556 B
HTML
23 lines
556 B
HTML
|
<!DOCTYPE html>
|
||
|
<script>
|
||
|
|
||
|
try {
|
||
|
var docType = document.implementation.createDocumentType(undefined, '', '');
|
||
|
var doc = document.implementation.createDocument('', '', null);
|
||
|
var xp = new XSLTProcessor;
|
||
|
xp.importStylesheet(doc);
|
||
|
xp.transformToDocument(docType);
|
||
|
}
|
||
|
catch (ex) {}
|
||
|
|
||
|
try {
|
||
|
docType = document.implementation.createDocumentType(undefined, '', '');
|
||
|
doc = document.implementation.createDocument('', '', null);
|
||
|
xp = new XSLTProcessor;
|
||
|
xp.importStylesheet(doc);
|
||
|
xp.transformToFragment(docType, document);
|
||
|
}
|
||
|
catch (ex) {}
|
||
|
|
||
|
</script>
|