Boris Zbarsky (2014-09-27T02:03:40.000Z)
domenic at domenicdenicola.com (2014-10-05T23:42:34.379Z)
Now that JS is growing an event loop, what should happen to it in navigated-away-from windows? To make this concrete: 1. Say I have an object that came from such a window and it has an `Object.observe` observer on it that mutates the property being observed. Should this continue to run forever ever after the window is navigated away from? 2. Say someone runs this in a web page: ```js (function f() Promise.resolve().then(f))() ``` what should happen when the user navigates away from that web page and why?