1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text-overflow/theme-overflow.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,62 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 1.8 + <title>Testcase for bug 669284</title> 1.9 + 1.10 + <style type="text/css"> 1.11 + p { 1.12 + overflow: hidden; 1.13 + text-overflow: ellipsis ellipsis; 1.14 + width: 200px; 1.15 + } 1.16 + .r { 1.17 + direction:rtl; 1.18 + } 1.19 + 1.20 +.x0 { margin:0px;} 1.21 +.x1 { margin:1px;} 1.22 +.x2 { margin:2px;} 1.23 +.x3 { margin:3px;} 1.24 +.x4 { margin-left:-1px;} 1.25 +.r .x4 { margin-right:-1px;} 1.26 + 1.27 +f { float:left; width:1px; height:1px; margin-left:-100px; } 1.28 +.r f { float:right; width:1px; height:1px; margin-right:-100px; } 1.29 + </style> 1.30 +</head> 1.31 +<body> 1.32 +<p> 1.33 + <input type="checkbox" class="x0"> 0<f></f><br> 1.34 + <input type="checkbox" class="x1"> 1<f></f><br> 1.35 + <input type="checkbox" class="x2"> 2<f></f><br> 1.36 + <input type="checkbox" class="x3"> 3<f></f><br> 1.37 + <input type="checkbox" class="x4"><f></f><br> 1.38 +</p> 1.39 + 1.40 +<p> 1.41 + <input type="radio" class="x0"> 0<f></f><br> 1.42 + <input type="radio" class="x1"> 1<f></f><br> 1.43 + <input type="radio" class="x2"> 2<f></f><br> 1.44 + <input type="radio" class="x3"> 3<f></f><br> 1.45 + <input type="radio" class="x4"><f></f><br> 1.46 +</p> 1.47 + 1.48 +<p class="r"> 1.49 + <input type="checkbox" class="x0"> 0<f></f><br> 1.50 + <input type="checkbox" class="x1"> 1<f></f><br> 1.51 + <input type="checkbox" class="x2"> 2<f></f><br> 1.52 + <input type="checkbox" class="x3"> 3<f></f><br> 1.53 + <input type="checkbox" class="x4"><f></f><br> 1.54 +</p> 1.55 + 1.56 +<p class="r"> 1.57 + <input type="radio" class="x0"> 0<f></f><br> 1.58 + <input type="radio" class="x1"> 1<f></f><br> 1.59 + <input type="radio" class="x2"> 2<f></f><br> 1.60 + <input type="radio" class="x3"> 3<f></f><br> 1.61 + <input type="radio" class="x4"><f></f><br> 1.62 +</p> 1.63 + 1.64 +</body> 1.65 +</html>