mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 888164 - additional logging to debug bug 888164. r=karlt
This commit is contained in:
parent
54d1ea287f
commit
b381002885
@ -32,6 +32,17 @@ var eventOffsetY = 2;
|
||||
|
||||
function openFullscreenWindow() {
|
||||
win = open("bug665540_window.xul", "_blank", "resizable=yes,chrome");
|
||||
win.addEventListener("sizemodechange",
|
||||
function() {
|
||||
info("sizemodechange. windowState = " + win.windowState + " fullScreen = " + win.fullScreen);
|
||||
}, false);
|
||||
win.addEventListener("fullscreen",
|
||||
function() {
|
||||
info("fullscreen event. windowState = " + win.windowState + " fullScreen = " + win.fullScreen);
|
||||
}, false);
|
||||
info("win.windowState = " + win.windowState);
|
||||
info("win.fullScreen = " + win.fullScreen);
|
||||
|
||||
// Close our window if the test times out so that it doesn't interfere
|
||||
// with later tests.
|
||||
timeoutID = setTimeout(function () {
|
||||
|
Loading…
Reference in New Issue
Block a user