2009-08-05 21:54:24 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Checks if the focus is correctly restored, when creating a floating client
|
|
|
|
# over an unfocused tiling client and destroying the floating one again.
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
fresh_workspace;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
cmd 'split h';
|
2011-11-22 00:47:32 +01:00
|
|
|
my $tiled_left = open_window;
|
|
|
|
my $tiled_right = open_window;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
# Get input focus before creating the floating window
|
2009-10-26 20:04:37 +01:00
|
|
|
my $focus = $x->input_focus;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2011-09-24 16:11:37 +02:00
|
|
|
my $window = open_floating_window($x);
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
is($x->input_focus, $window->id, 'floating window focused');
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
$window->unmap;
|
|
|
|
|
2011-11-21 23:44:20 +01:00
|
|
|
wait_for_unmap $window;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
is($x->input_focus, $focus, 'Focus correctly restored');
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|