1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text-overflow/two-value-syntax-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,66 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/licenses/publicdomain/ 1.8 + 1.9 + Test: text-overflow:<left> <right> 1.10 +--> 1.11 +<html><head> 1.12 +<title>text-overflow: text-overflow:<left> <right></title> 1.13 +<style type="text/css"> 1.14 +@font-face { 1.15 + font-family: DejaVuSansMono; 1.16 + src: url(../fonts/DejaVuSansMono.woff); 1.17 +} 1.18 +html,body { 1.19 + color:black; background-color:white; font-size:16px; padding:0; margin:0; font-family:DejaVuSansMono; 1.20 +} 1.21 + 1.22 +.test { 1.23 + overflow:hidden; 1.24 + width:100%; 1.25 + white-space:nowrap; 1.26 +} 1.27 +span { 1.28 + margin: 0 -2px; 1.29 +} 1.30 +.rlo { 1.31 + unicode-bidi: bidi-override; direction:rtl; 1.32 +} 1.33 +.lro { 1.34 + unicode-bidi: bidi-override; 1.35 +} 1.36 +.rtl { 1.37 + direction:rtl; 1.38 +} 1.39 +.ltr { 1.40 + direction:ltr; 1.41 +} 1.42 + 1.43 +</style> 1.44 + 1.45 +</head><body> 1.46 + 1.47 +<div style="float:left;"> 1.48 +||||| 1.49 +<div class="test t1"><span> …||…</span></div> 1.50 +<div class="test rtl t1"><span> …||…</span></div> 1.51 +<div class="test t2"><span> …||||</span></div> 1.52 +<div class="test rtl t2"><span>||||…</span></div> 1.53 +<div class="test t3"><span>||||…</span></div> 1.54 +<div class="test rtl t3"><span> …||||</span></div> 1.55 +<div class="test t4"><span>||||.</span></div> 1.56 +<div class="test rtl t4"><span> .||||</span></div> 1.57 +<div class="test t5"><span> .||||</span></div> 1.58 +<div class="test rtl t5"><span>||||.</span></div> 1.59 +<div class="test t6"><span> .||,</span></div> 1.60 +<div class="test rtl t6"><span> ,||.</span></div> 1.61 +<div class="test t7"><span> …||,</span></div> 1.62 +<div class="test rtl t7"><span> ,||…</span></div> 1.63 +<div class="test t8"><span> .||…</span></div> 1.64 +<div class="test rtl t8"><span> …||.</span></div> 1.65 +</div> 1.66 + 1.67 + 1.68 +</body> 1.69 +</html>