editor/libeditor/html/crashtests/767169.html

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 <html>
     2 <head>
     3 <script>
     5 // Document must not have a doctype to trigger the bug
     7 function boom()
     8 {
     9   var root = document.documentElement;
    10   while (root.firstChild) { root.removeChild(root.firstChild); }
    11   root.contentEditable = "true";
    12   document.removeChild(root);
    13   document.appendChild(root);
    14   window.getSelection().collapse(root, 0);
    15   window.getSelection().extend(document, 1);
    16   document.removeChild(root);
    17 }
    19 </script>
    20 </head>
    22 <body onload="boom();"></body>
    23 </html>

mercurial