1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/forms/input/checkbox/gtk-theme-width-height.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + <meta charset="utf-8"> 1.8 + <title>Testcase for bug 932506</title> 1.9 + <style> 1.10 + 1.11 +input { outline:1px solid black; } 1.12 + 1.13 +</style> 1.14 +</head> 1.15 +<body> 1.16 + 1.17 +<div style="overflow:hidden; width:160px;"> 1.18 + <div style="float:left; width:799px; border:1px solid blue;"> 1.19 + <input type="checkbox" checked style="width:400px; outline:none;"> 1.20 + <input type="checkbox" checked style="width:400px; height:100px; outline:none;"> 1.21 + </div> 1.22 +</div> 1.23 + 1.24 +<input type="checkbox" checked style="width:400px; height:1px;"><br> 1.25 +<input type="checkbox" checked style="width:1px; height:100px;"><br> 1.26 +<input type="checkbox" checked style="width:1px; height:1px;"><br> 1.27 + 1.28 +<input type="checkbox" checked style="width:400px; height:0;"><br> 1.29 +<input type="checkbox" checked style="width:0; height:100px;"><br> 1.30 +<input type="checkbox" checked style="width:0; height:0;"><br> 1.31 + 1.32 +</body> 1.33 +</html>