mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 10:57:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
22
dom/xslt/crashtests/602115.html
Normal file
22
dom/xslt/crashtests/602115.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue