dom/xslt/crashtests/603844.html

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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