mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +09:00
22 lines
556 B
HTML
22 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>
|