no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / dom / xslt / crashtests / 602115.html
blobad42d76a05f8f2ef0d69bf93c7e384417fbea080
1 <!DOCTYPE html>
2 <script>
4 try {
5 var docType = document.implementation.createDocumentType(undefined, '', '');
6 var doc = document.implementation.createDocument('', '', null);
7 var xp = new XSLTProcessor;
8 xp.importStylesheet(doc);
9 xp.transformToDocument(docType);
11 catch (ex) {}
13 try {
14 docType = document.implementation.createDocumentType(undefined, '', '');
15 doc = document.implementation.createDocument('', '', null);
16 xp = new XSLTProcessor;
17 xp.importStylesheet(doc);
18 xp.transformToFragment(docType, document);
20 catch (ex) {}
22 </script>