dom/plugins/test/reftest/plugin-transform-alpha-zindex.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 <style type="text/css">
     5 #one {
     6   position:absolute;
     7   left:0px; top:0px;
     8   z-index:1;
     9 }
    10 #two {
    11   position:absolute;
    12   top:0px; left:0px;
    13   width:200px; height:200px;
    14   z-index:0;
    15   background-color: rgb(255,0,0);
    16   -moz-transform-origin: 0 0;
    17   -moz-transform: translate(100px,100px);
    18 }
    19 </style>
    20 </head>
    21 <body>
    22   <div id="two"></div>
    23   <embed id="one" type="application/x-test" width="400" height="400" drawmode="solid" color="9900FF00"></embed>
    24 </body>
    25 </html>

mercurial