layout/reftests/scrolling/layer-change-1-frame.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style>
     5 body {background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAJ0lEQVRIx%2B3NMQEAAAgDoPUvrSnmIxQgOTA1AoFAIBAIBALBt6BqAZbsggsDjv9PAAAAAElFTkSuQmCC') fixed;}
     6 #header {
     7 	background: rgba(50,50,50,0.8);
     8 	position: fixed;
     9 	left: 0px;
    10 	top: 0px;
    11 	width: 500px;
    12     height: 200px;
    13 	z-index: 1000;
    14 }
    15 #floaty_right {
    16 	position: fixed;
    17 	left: 600px;
    18 	top: 0px;
    19     z-index: 0;
    20 }
    21 #floaty_left {
    22 	width: 500px;
    23     border:1px solid black;
    24 }
    25 li {
    26     margin-left: 100px;
    27 	position: relative;
    28     background: yellow;
    29     padding: 2px;
    30 }
    31 </style>
    32 <body>
    33 <div id="header">Android Gripes</div>
    34 <div id="floaty_right">dddddddddddddddddddddddddddddddddddddddddddddddddddddd</div>
    35 <div id="floaty_left">
    36   <li>
    37     When I use an iPhone and an Android phone at the same time, I 
    38 often find that apps from the same company look a lot different on these
    39  two platforms - the ones on Android usually look much worse.
    40  When I use an iPhone and an Android phone at the same time, I 
    41 often find that apps from the same company look a lot different on these
    42  two platforms - the ones on Android usually look much worse.
    43  When I use an iPhone and an Android phone at the same time, I 
    44 often find that apps from the same company look a lot different on these
    45  two platforms - the ones on Android usually look much worse.
    46 When I use an iPhone and an Android phone at the same time, I 
    47 often find that apps from the same company look a lot different on these
    48  two platforms - the ones on Android usually look much worse.
    49     When I use an iPhone and an Android phone at the same time, I 
    50 often find that apps from the same company look a lot different on these
    51  two platforms - the ones on Android usually look much worse.
    52  When I use an iPhone and an Android phone at the same time, I 
    53 often find that apps from the same company look a lot different on these
    54  two platforms - the ones on Android usually look much worse.
    55  When I use an iPhone and an Android phone at the same time, I 
    56 often find that apps from the same company look a lot different on these
    57  two platforms - the ones on Android usually look much worse.
    58 When I use an iPhone and an Android phone at the same time, I 
    59 often find that apps from the same company look a lot different on these
    60  two platforms - the ones on Android usually look much worse.
    61   </li>
    62   <div style="height:10000px;"></div>
    63   <script>
    64   window.scrollTo(0,0);
    65   </script>
    66 </div>
    67 </body>
    68 </html>

mercurial