layout/reftests/transform-3d/overflow-hidden-1-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><head>
     3 <style type="text/css">
     4 	.stage{
     5 		-moz-perspective:  700px;
     6 		overflow: hidden;
     7 		width: 260px;
     8 		height: 260px;
     9 		display: block;
    10 	}
    12 	.box {
    13 		width: 170px;
    14 		height: 170px;
    15 		background-color: red;
    16 		display:  block;
    17 		-moz-transform: rotate3d(0,1,0, 50deg) translatey(20px);
    18 	}
    20 	</style>
    21 </head>
    23 <body id="body">
    24 	<div class="stage">
    25 		<div class="box"></div>
    26 	</div>
    27 </body></html>

mercurial