summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2015-07-11 08:00:25 (GMT)
committerfvogel <fvogelnew1@free.fr>2015-07-11 08:00:25 (GMT)
commit1b214cf0648595eb130820824655fec78109ed6c (patch)
tree6bc77fa20ebb6998234f1d7a02aad6178ff251f7 /tests
parentd224bcbbfc4193df3eef7a54d4f41892eb7de0c7 (diff)
downloadtk-1b214cf0648595eb130820824655fec78109ed6c.zip
tk-1b214cf0648595eb130820824655fec78109ed6c.tar.gz
tk-1b214cf0648595eb130820824655fec78109ed6c.tar.bz2
Added test case for bug [3f1f79abcf]bug_3f1f79abcf
Diffstat (limited to 'tests')
-rw-r--r--tests/textIndex.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/textIndex.test b/tests/textIndex.test
index abed3d4..e78e54b 100644
--- a/tests/textIndex.test
+++ b/tests/textIndex.test
@@ -943,6 +943,19 @@ test textIndex-24.1 {text mark prev} {
set res
} {1.0}
+test textIndex-25.1 {IndexCountBytesOrdered, bug [3f1f79abcf]} {
+ pack [text .t2]
+ .t2 tag configure elided -elide 1
+ .t2 insert end "01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n"
+ .t2 insert end "11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n"
+ .t2 insert end "21\n22\n23\n25\n26\n27\n28\n29\n30\n31"
+ .t2 insert end "32\n33\n34\n36\n37\n38\n39" elided
+ # then this used to crash Tk:
+ .t2 see end
+ focus -force .t2 ; # to see the cursor blink
+ destroy .t2
+} {}
+
# cleanup
rename textimage {}
catch {destroy .t}