Merge pull request #10097 from liusy182/liusy182-browserview

#10039 add BrowserView.fromId
This commit is contained in:
Birunthan Mohanathas 2017-07-28 01:27:47 +03:00 committed by GitHub
commit 20ae611dd9
3 changed files with 20 additions and 1 deletions

View file

@ -100,4 +100,14 @@ describe('BrowserView module', function () {
assert.ok(!view.webContents.getOwnerBrowserWindow())
})
})
describe('BrowserView.fromId()', function () {
it('returns the view with given id', function () {
view = new BrowserView()
w.setBrowserView(view)
assert.notEqual(view.id, null)
let view2 = BrowserView.fromId(view.id)
assert.equal(view2.webContents.id, view.webContents.id)
})
})
})