patch 9.0.0591: message window popup shows on only one tab page

Problem:    Message window popup shows on only one tab page. (Naruhiko
            Nishino)
Solution:   Show the message window popup on all tab pages. (closes #11231)
diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim
index 0100ba9..a32ff51 100644
--- a/src/testdir/test_messages.vim
+++ b/src/testdir/test_messages.vim
@@ -475,6 +475,10 @@
   call term_sendkeys(buf, "\<CR>")
   call VerifyScreenDump(buf, 'Test_echowindow_7', {})
 
+  call term_sendkeys(buf, ":tabnew\<CR>")
+  call term_sendkeys(buf, ":echowin 'more'\<CR>")
+  call VerifyScreenDump(buf, 'Test_echowindow_8', {})
+
   " clean up
   call StopVimInTerminal(buf)
   call delete('XtestEchowindow')