electron/spec/api-web-frame-spec.js

36 lines
1 KiB
JavaScript
Raw Normal View History

const { expect } = require('chai')
const { webFrame } = require('electron')
2016-03-25 20:03:49 +00:00
describe('webFrame module', function () {
2016-11-22 16:43:14 +00:00
it('supports setting the visual and layout zoom level limits', function () {
expect(() => {
2016-11-22 16:43:14 +00:00
webFrame.setVisualZoomLevelLimits(1, 50)
webFrame.setLayoutZoomLevelLimits(0, 25)
}).to.not.throw()
2016-11-22 16:43:14 +00:00
})
it('top is self for top frame', () => {
expect(webFrame.top.context).to.equal(webFrame.context)
})
it('opener is null for top frame', () => {
expect(webFrame.opener).to.be.null()
})
it('firstChild is null for top frame', () => {
expect(webFrame.firstChild).to.be.null()
})
it('getFrameForSelector() does not crash when not found', () => {
expect(webFrame.getFrameForSelector('unexist-selector')).to.be.null()
})
it('findFrameByName() does not crash when not found', () => {
expect(webFrame.findFrameByName('unexist-name')).to.be.null()
})
it('findFrameByRoutingId() does not crash when not found', () => {
expect(webFrame.findFrameByRoutingId(-1)).to.be.null()
})
2016-03-25 20:03:49 +00:00
})