summaryrefslogtreecommitdiffstats
path: root/tests/wm.test
diff options
context:
space:
mode:
authorculler <culler>2019-11-08 06:51:55 (GMT)
committerculler <culler>2019-11-08 06:51:55 (GMT)
commit26733057747b9f7db38abe7f8c3a75132a8881f6 (patch)
tree22d69df81d09e0c21d9bbff005fdf4fef90ed232 /tests/wm.test
parent5a3617067387db921c9984395fbe013d68dc1d24 (diff)
downloadtk-26733057747b9f7db38abe7f8c3a75132a8881f6.zip
tk-26733057747b9f7db38abe7f8c3a75132a8881f6.tar.gz
tk-26733057747b9f7db38abe7f8c3a75132a8881f6.tar.bz2
Reimplement TkWmStackorderToplevel to make it straightforward and shorter and behave the same on macOS as on unix and Windows.
Diffstat (limited to 'tests/wm.test')
-rw-r--r--tests/wm.test14
1 files changed, 2 insertions, 12 deletions
diff --git a/tests/wm.test b/tests/wm.test
index c2bc385..1dbc372 100644
--- a/tests/wm.test
+++ b/tests/wm.test
@@ -1553,8 +1553,8 @@ test wm-stackorder-5.3 {An overrideredirect window\
destroy .t
} -result 1
-test wm-stackorder-6.1 {An embedded toplevel does not\
- appear in the stacking order on unix or win} -constraints notAqua -body {
+test wm-stackorder-6.1 {An embedded toplevel does not appear in the \
+ stacking order} -body {
toplevel .real -container 1
toplevel .embd -bg blue -use [winfo id .real]
update
@@ -1562,16 +1562,6 @@ test wm-stackorder-6.1 {An embedded toplevel does not\
} -cleanup {
deleteWindows
} -result {. .real}
-test wm-stackorder-6.1.1 {An embedded toplevel does\
- appear in the stacking order on macOS} -constraints aqua -body {
- toplevel .real -container 1
- toplevel .embd -bg blue -use [winfo id .real]
- update
- wm stackorder .
-} -cleanup {
- deleteWindows
-} -result {. .embd}
-
stdWindow