Merge pull request #8156 from sindresorhus/remove-dock-window-level

🍎 Document that the `dock` window level is deprecated
This commit is contained in:
Kevin Sawicki 2016-12-12 09:39:08 -08:00 committed by GitHub
commit 2fa9ca1f6d
3 changed files with 3 additions and 2 deletions

View file

@ -494,7 +494,7 @@ describe('BrowserWindow module', function () {
describe('BrowserWindow.setAlwaysOnTop(flag, level)', function () {
it('sets the window as always on top', function () {
assert.equal(w.isAlwaysOnTop(), false)
w.setAlwaysOnTop(true, 'dock')
w.setAlwaysOnTop(true, 'screen-saver')
assert.equal(w.isAlwaysOnTop(), true)
w.setAlwaysOnTop(false)
assert.equal(w.isAlwaysOnTop(), false)