FOCUS and BLUR event not working?

Hi, is there an example on how to use these events?

I tried adding it in scene like

this.events.addListener(Phaser.Core.Events.FOCUS, this._onFocus, this);
this.events.addListener(Phaser.Core.Events.BLUR, this._onBlur, this);

changing tabs on my chrome browser, does not trigger that function at all

am I adding that wrong?

Use this.game.events.

Thanks that works great.