StorageEvent.url (WAS: XMLHttpRequest.responseBlob)

2010-04-29 Thread Jeremy Orlow
On Thu, Apr 29, 2010 at 6:11 AM, Simon Pieters sim...@opera.com wrote: You mean StorageEvent? javascript:alert('url' in StorageEvent.prototype) Opera: false Firefox: true Chrome: false I tried actually causing a storage event and then enumerated its properties with each browser and got

Re: StorageEvent.url (WAS: XMLHttpRequest.responseBlob)

2010-04-29 Thread Boris Zbarsky
On 4/29/10 9:23 AM, Jeremy Orlow wrote: Opera 10.50 does return false for your bit of javascript, but when I enumerate the properties on event after causing a storage event, url is there. Weird. All that means is that the property is an own property of the object, not a property

Re: StorageEvent.url (WAS: XMLHttpRequest.responseBlob)

2010-04-29 Thread Boris Zbarsky
On 4/29/10 12:13 PM, Jeremy Orlow wrote: The following script does not work for me in 3.6. Would love to know what I'm doing wrong: window.onstorage = function() { alert(HI); } localStorage.foo = localStorage.foo + ; In Gecko storage events for a change in window X are fired at all windows