tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

301726-1-ref.html (752B)


      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>