1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/367247-s-hidden.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<title>Testcase, 'overflow' on elements with 'display:inline-block'</title> 1.8 +<style type="text/css"> 1.9 + 1.10 +body > span { 1.11 + display: inline-block; 1.12 + vertical-align: text-bottom; 1.13 + overflow: hidden; 1.14 + width: 100px; 1.15 + height: 100px; 1.16 + border: thin solid; 1.17 +} 1.18 + 1.19 +body > span > span { 1.20 + display: block; 1.21 + background: blue; 1.22 + width: 20px; 1.23 + height: 20px; 1.24 +} 1.25 + 1.26 +</style> 1.27 +</head> 1.28 +<body> 1.29 +<span><span></span></span> 1.30 +</body> 1.31 +</html>