layout/reftests/bugs/301726-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/301726-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     1.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +	<head>
     1.7 +		<title>Overflow: Auto / Cascaded Boxes / Scrollbar Rendering Testcase</title>
     1.8 +		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     1.9 +		<style type="text/css">
    1.10 +			#outer_box {
    1.11 +				width: 400px;
    1.12 +				height: 100px;
    1.13 +				overflow: auto;
    1.14 +			}
    1.15 +			#inner_box {
    1.16 +				width: 200%;
    1.17 +				height: 100%;
    1.18 +				overflow: auto;
    1.19 +			}
    1.20 +			#dummy_content {
    1.21 +				height: 101px;
    1.22 +				background: yellow;
    1.23 +			}
    1.24 +		</style>
    1.25 +	</head>
    1.26 +	<body>
    1.27 +		<div id="outer_box">
    1.28 +			<div id="inner_box">
    1.29 +				<div id="dummy_content">
    1.30 +					&nbsp;
    1.31 +				</div>
    1.32 +			</div>
    1.33 +		</div>
    1.34 +	</body>
    1.35 +</html>
    1.36 \ No newline at end of file

mercurial