1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/514917-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<title>Testcase, bug 514917</title> 1.6 +<style type="text/css"> 1.7 + 1.8 +body > div { 1.9 + overflow: auto; /* to detect too much overflow, which is the bug here */ 1.10 + width: 200px; 1.11 + height: 200px; 1.12 +} 1.13 + 1.14 +body > div > div { 1.15 + width: 100px; 1.16 + height: 100px; 1.17 + box-shadow: blue 50px 50px; 1.18 +} 1.19 + 1.20 +body > div > div > div { 1.21 + width: 160px; 1.22 + height: 160px; 1.23 + border: medium solid; 1.24 +} 1.25 + 1.26 +</style> 1.27 +<body> 1.28 +<div><div><div></div></div></div> 1.29 +</body>