Revert "Fix #1771 and probably others (#2286)" (#2299)

4f68984f2f
This commit is contained in:
Isiah Meadows 2018-11-14 19:26:23 -05:00 committed by GitHub
parent 8f7d85b0c9
commit 4d579c50b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 40 deletions

View file

@ -324,16 +324,4 @@ o.spec("event", function() {
o(onevent.args[0].type).equals("transitionend")
o(onevent.args[0].target).equals(div.dom)
})
o("doesn't fire blur on removed nodes", function() {
var spy = o.spy()
var div = {tag: "div", attrs: {onblur: spy}}
render(root, [div])
div.dom.focus()
render(root, [])
o(spy.callCount).equals(0)
o(onevent.callCount).equals(0)
})
})