]> git.sur5r.net Git - i3/i3/blob - testcases/t/104-focus-stack.t
Merge branch 'master' into next
[i3/i3] / testcases / t / 104-focus-stack.t
1 #!perl
2 # vim:ts=4:sw=4:expandtab
3 # Checks if the focus is correctly restored, when creating a floating client
4 # over an unfocused tiling client and destroying the floating one again.
5
6 use i3test;
7
8 fresh_workspace;
9
10 cmd 'split h';
11 my $tiled_left = open_window;
12 my $tiled_right = open_window;
13
14 # Get input focus before creating the floating window
15 my $focus = $x->input_focus;
16
17 # Create a floating window which is smaller than the minimum enforced size of i3
18 my $window = open_floating_window;
19
20 is($x->input_focus, $window->id, 'floating window focused');
21
22 $window->unmap;
23
24 wait_for_unmap $window;
25
26 is($x->input_focus, $focus, 'Focus correctly restored');
27
28 done_testing;