browser/devtools/commandline/test/browser_cmd_pagemod_export.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 <!doctype html>
     2 <html lang="en">
     3 <head>
     4   <meta charset="utf-8">
     5   <title>GCLI inspect command test</title>
     6 </head>
     7 <body>
     9   <!-- This is a list of 0 h1 elements -->
    11   <!-- This is a list of 1 div elements -->
    12   <div>Hello, I'm a div</div>
    14   <!-- This is a list of 2 span elements -->
    15   <span>Hello, I'm a span</span>
    16   <span>And me</span>
    18   <!-- This is a collection of various things that match only once -->
    19   <p class="someclass">.someclass</p>
    20   <p id="someid">#someid</p>
    21   <button disabled>button[disabled]</button>
    22   <p><strong>p&gt;strong</strong></p>
    24 </body>
    25 </html>

mercurial