diff options
author | fvogelnew1@free.fr <fvogel> | 2014-12-05 20:36:25 (GMT) |
---|---|---|
committer | fvogelnew1@free.fr <fvogel> | 2014-12-05 20:36:25 (GMT) |
commit | a3513590094a5c585fd5abca167116cbfa50d7ad (patch) | |
tree | c5ce3069e1073e46d58d978fa84abf56ccc1a1c2 /tests | |
parent | edfb74a9fa4a5c8db70bc518877865eb22dd0d64 (diff) | |
parent | 3f69ee788b006edf0ea2a96a698793fbe0a36796 (diff) | |
download | tk-a3513590094a5c585fd5abca167116cbfa50d7ad.zip tk-a3513590094a5c585fd5abca167116cbfa50d7ad.tar.gz tk-a3513590094a5c585fd5abca167116cbfa50d7ad.tar.bz2 |
Merged from branch bug-7703f947aa
Diffstat (limited to 'tests')
-rw-r--r-- | tests/textDisp.test | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/textDisp.test b/tests/textDisp.test index fff52d4..c3ed43f 100644 --- a/tests/textDisp.test +++ b/tests/textDisp.test @@ -2065,6 +2065,27 @@ test textDisp-16.40 {text count -xpixels} { [.t count -xpixels 1.0 "1.0 displaylineend"] \ [.t count -xpixels 1.0 end] } {35 -35 0 42 42 42 0} +test textDisp-16.41 {text count -xpixels with indices in elided lines} { + set res {} + .t delete 1.0 end + for {set i 1} {$i < 40} {incr i} { + .t insert end [string repeat "Line $i" 20] + .t insert end "\n" + } + .t configure -wrap none + .t tag add hidden 5.15 20.15 + .t tag configure hidden -elide true + lappend res [.t count -xpixels 5.15 6.0] \ + [.t count -xpixels 5.15 6.1] \ + [.t count -xpixels 6.0 6.1] \ + [.t count -xpixels 6.1 6.2] \ + [.t count -xpixels 6.1 6.0] \ + [.t count -xpixels 6.0 7.0] \ + [.t count -xpixels 6.1 7.1] \ + [.t count -xpixels 15.0 20.15] \ + [.t count -xpixels 20.15 20.16] \ + [.t count -xpixels 20.16 20.15] +} [list 0 0 0 0 0 0 0 0 $fixedWidth -$fixedWidth] .t delete 1.0 end foreach i {a b c d e f g h i j k l m n o p q r s t u v w x y z} { |