diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-13 19:57:04 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-13 19:57:04 (GMT) |
commit | 68dd06de5e614036e5347448918518bbc8737b62 (patch) | |
tree | b930011fd5014ab5a2e6014349eec66ae7f80952 /tests/bind.test | |
parent | acf0bfae838e0a0791a69ed9650830b17f3ed34f (diff) | |
parent | 6ab86512888d4242f0e2912343e9da7566e8ab53 (diff) | |
download | tk-68dd06de5e614036e5347448918518bbc8737b62.zip tk-68dd06de5e614036e5347448918518bbc8737b62.tar.gz tk-68dd06de5e614036e5347448918518bbc8737b62.tar.bz2 |
Merge 8.6
Diffstat (limited to 'tests/bind.test')
-rw-r--r-- | tests/bind.test | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/bind.test b/tests/bind.test index 39e8ca9..edcdf96 100644 --- a/tests/bind.test +++ b/tests/bind.test @@ -6010,13 +6010,34 @@ test bind-28.8 {keysym names} -setup { } -cleanup { destroy .t.f } -result {X x {keysym X}} -test bind-28.9 {keysym names, deprecated X11 names (e.g. "Eth") are translated into non-deprecated version (like "ETH")} -body { +test bind-28.9 {keysym names, Eth -> ETH} -body { frame .t.f -class Test -width 150 -height 100 bind .t.f <Eth> foo bind .t.f } -cleanup { destroy .t.f } -result {<Key-ETH>} +test bind-28.10 {keysym names, Ooblique -> Oslash} -body { + frame .t.f -class Test -width 150 -height 100 + bind .t.f <Ooblique> foo + bind .t.f +} -cleanup { + destroy .t.f +} -result {<Key-Oslash>} +test bind-28.11 {keysym names, gcedilla} -body { + frame .t.f -class Test -width 150 -height 100 + bind .t.f <gcedilla> foo + bind .t.f +} -cleanup { + destroy .t.f +} -result {<Key-gcedilla>} +test bind-28.12 {keysym names, Greek_IOTAdiaeresis -> Greek_IOTAdieresis} -body { + frame .t.f -class Test -width 150 -height 100 + bind .t.f <Greek_IOTAdiaeresis> foo + bind .t.f +} -cleanup { + destroy .t.f +} -result {<Key-Greek_IOTAdieresis>} test bind-29.1 {Tcl_BackgroundError procedure} -setup { |