layout/reftests/css-gradients/bug-916535-background-repeat-linear-ref.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">
     4 <head>
     5   <meta charset="utf-8">
     6   <title>Grid</title>
     7   <style>
     8       body {
     9         background: #fff;
    10     }
    11     .r {background: red; width: 300px; height: 50px}
    12     .g {background: green; width: 300px; height: 50px}
    13   </style>
    14 </head>
    16 <body>
    17         <div class=r></div>
    18         <div class=g></div>
    19         <div class=r></div>
    20         <div class=g></div>
    21         <div class=r></div>
    22         <div class=g></div>
    23 </body>
    24 </html>

mercurial