Add spec for invalid window.history.go offset
This commit is contained in:
parent
8460a580b9
commit
775753c3d7
1 changed files with 8 additions and 0 deletions
|
@ -989,4 +989,12 @@ describe('chromium feature', function () {
|
||||||
}, /Cannot convert object to primitive value/)
|
}, /Cannot convert object to primitive value/)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('window.history.go(offset)', function () {
|
||||||
|
it('throws an exception when the argumnet cannot be converted to a string', function () {
|
||||||
|
assert.throws(function () {
|
||||||
|
window.history.go({toString: null})
|
||||||
|
}, /Cannot convert object to primitive value/)
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue