3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
|
update
# the menu shall have been unposted by the second click
winfo ismapped .top.mb.m
} -cleanup {
destroy .top.mb.m .top.m .top
} -result 0
# cleanup
imageFinish
deleteWindows
cleanupTests
return
|
>
>
>
>
>
>
>
>
|
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
|
update
# the menu shall have been unposted by the second click
winfo ismapped .top.mb.m
} -cleanup {
destroy .top.mb.m .top.m .top
} -result 0
test menu-39.1 {empty -type - bug be8f5b9fc2} -setup {
catch {destroy .m}
} -body {
menu .m -type {}
} -cleanup {
destroy .m
} -returnCodes error -result {ambiguous type "": must be normal, tearoff, or menubar}
# cleanup
imageFinish
deleteWindows
cleanupTests
return
|