layout/reftests/bugs/301726-1-ref.html

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 	<head>
     4 		<title>Overflow: Auto / Cascaded Boxes / Scrollbar Rendering Testcase</title>
     5 		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     6 		<style type="text/css">
     7 			#outer_box {
     8 				width: 400px;
     9 				height: 100px;
    10 				overflow-x: scroll;
    11 				overflow-y: hidden;
    12 			}
    13 			#inner_box {
    14 				width: 200%;
    15 				height: 100%;
    16 				overflow: auto;
    17 			}
    18 			#dummy_content {
    19 				height: 101px;
    20 				background: yellow;
    21 			}
    22 		</style>
    23 	</head>
    24 	<body>
    25 		<div id="outer_box">
    26 			<div id="inner_box">
    27 				<div id="dummy_content">
    28 					&nbsp;
    29 				</div>
    30 			</div>
    31 		</div>
    32 	</body>
    33 </html>

mercurial