mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/*global ok, is, info, waitForExplicitFinish, finish, gBrowser */
|
|
/*global isTiltEnabled, isWebGLSupported, createTab, createTilt */
|
|
/*global Services, Tilt, TiltUtils, InspectorUI, TILT_DESTROYED */
|
|
"use strict";
|
|
|
|
function test() {
|
|
if (!isTiltEnabled()) {
|
|
info("Skipping destruction test because Tilt isn't enabled.");
|
|
return;
|
|
}
|
|
if (!isWebGLSupported()) {
|
|
info("Skipping destruction test because WebGL isn't supported.");
|
|
return;
|
|
}
|
|
|
|
waitForExplicitFinish();
|
|
|
|
createTab(function() {
|
|
createTilt({
|
|
onTiltOpen: function()
|
|
{
|
|
Services.obs.addObserver(cleanup, TILT_DESTROYED, false);
|
|
InspectorUI.closeInspectorUI();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
function cleanup() {
|
|
let id = TiltUtils.getWindowId(gBrowser.selectedBrowser.contentWindow);
|
|
|
|
is(Tilt.visualizers[id], null,
|
|
"The current instance of the visualizer wasn't destroyed properly.");
|
|
|
|
Services.obs.removeObserver(cleanup, TILT_DESTROYED);
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|