gfx/tests/crashtests/693143-1.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>
     3 <head>
     4 <title>Tiny ugly fonts</title>
     5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     7 <style type="text/css">
     9 body {
    10   margin: 50px;
    11 }
    13 p, div {
    14   margin: 0;
    15 }
    17 #test {
    18   font-size: 1px;
    19 }
    21 #test p {
    22   font-size: 8.3%;
    23 }
    25 #f1 { font-family: Terminal; }
    26 #f2 { font-family: FixedSys; }
    27 #f3 { font-family: Script; }
    28 #f4 { font-family: Roman; }
    30 </style>
    32 </head>
    33 <body>
    35 <h4>No text should show below this line</h4>
    36 <div id="test">
    37 <p id="f1">ugly font</p>
    38 <p id="f2">ugly font</p>
    39 <p id="f3">ugly font</p>
    40 <p id="f4">ugly font</p>
    41 </div>
    43 </body>
    44 </html>

mercurial