dom/bindings/crashtests/862610.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>
     3 <head>
     4 <meta charset="UTF-8">
     5 <script>
     6   HTMLElement.prototype.__proto__ = Proxy.create({}, {});
     7   try {
     8     window.Image;
     9   } finally {
    10     // Restore our prototype so the test harnesses can deal with us
    11     // We can't just assign to __proto__ because it lives on our proto chain
    12     // and we messed that up.
    13     var desc = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
    14     desc.set.call(HTMLElement.prototype, Element.prototype);
    15   }
    16 </script>
    17 </head>
    19 <body></body>
    20 </html>

mercurial