dom/xslt/crashtests/603844.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8   var frame = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
     9   frame.onload = y; 
    10   frame.src = "data:text/plain,0"; 
    11   document.body.appendChild(frame);
    12   frameDoc = frame.contentDocument;
    14   function y()
    15   {
    16     frameDoc.removeChild(frameDoc.documentElement);
    18     var xp = new XSLTProcessor;
    19     xp.importStylesheet(frameDoc);
    20     try {
    21       xp.transformToDocument(frameDoc.createTextNode('x'));
    22     } catch(e) { }
    24     document.documentElement.removeAttribute("class");
    25   }
    26 }
    28 </script>
    29 </head>
    31 <body onload="boom();"></body>
    32 </html>

mercurial