Fixed
Status Update
Comments
be...@gtempaccount.com <be...@gtempaccount.com> #2
Sorry -
Wrong Webkit bug number (its a related bug, but not the exact one):
https://bugs.webkit.org/show_bug.cgi?id=11284
Cheers,
- Bill
Wrong Webkit bug number (its a related bug, but not the exact one):
Cheers,
- Bill
ph...@chromium.org <ph...@chromium.org> #3
[Empty comment from Monorail migration]
am...@google.com <am...@google.com> #4
I am facing the same issue but it looks like it has been fixed in Webkit.
I am attaching a small test html page that I used to test. I tested it on FF(3.6),
Chrome (dev channel) and Safari (4.0.4) for windows.
The test:
- clicking the button shows an alert with the value of navigator.onLine variable
- I basically tested by clicking the button when connected and when disconnected. FF
and Safari give the desired results but Chrome does not. It looks like the Chromium
codebase has not picked up the fix from the Webkit core -
https://bugs.webkit.org/show_bug.cgi?id=11284
I am attaching a small test html page that I used to test. I tested it on FF(3.6),
Chrome (dev channel) and Safari (4.0.4) for windows.
The test:
- clicking the button shows an alert with the value of navigator.onLine variable
- I basically tested by clicking the button when connected and when disconnected. FF
and Safari give the desired results but Chrome does not. It looks like the Chromium
codebase has not picked up the fix from the Webkit core -
le...@gmail.com <le...@gmail.com> #5
This will impact Offline Web Apps which will be a feature in HTML5. I found IE 8.0 can
detect network status and support work offline mode. Firefox just supports work offline
mode but fails to detect physical network status change. Chrome does not support both
work offline mode menu and navigator.onLine detection.
Thanks,
-Chengrui
detect network status and support work offline mode. Firefox just supports work offline
mode but fails to detect physical network status change. Chrome does not support both
work offline mode menu and navigator.onLine detection.
Thanks,
-Chengrui
mh...@chromium.org <mh...@chromium.org> #6
gl...@gmail.com <gl...@gmail.com> #7
uTest
Repro in dev build: yes
Repro in stable build: yes
Accurate Steps: yes
Configuration used: Chrome 5.0.375.86 + Chrome 6.0.447.0 dev + Windows 7 x64
This is still reproducible. Test HTML returns 'true' for online and offline.
Repro in dev build: yes
Repro in stable build: yes
Accurate Steps: yes
Configuration used: Chrome 5.0.375.86 + Chrome 6.0.447.0 dev + Windows 7 x64
This is still reproducible. Test HTML returns 'true' for online and offline.
da...@chromium.org <da...@chromium.org> #8
navigator.onLine and online/offline events are not supported because they are not useful. they only tell you about the status of your immediate network adapter. it doesn't say anything about whether or not you can actually connect to a server. your ISP connection may be down for example, and your local operating system would have no idea. your OS would just be able to tell you that "yes, you have a connection to your router." WONTFIX
da...@chromium.org <da...@chromium.org> #9
the only reliable way to determine if you are online is to actually try to make a connection to a server. this forces you to write your application in a more robust way. if you write to navigator.onLine and online/offline events, then your application will not perform well in real network outage/flakiness scenarios.
dg...@chromium.org <dg...@chromium.org> #10
[Empty comment from Monorail migration]
ti...@gmail.com <ti...@gmail.com> #11
I'd disagree with darin's assessment that online and offline events are not useful. Lets say you are making an ajax call and it fails. Normally at this point, you'd give the user a warning or error message and then add a timeout and retry the call (and keep retrying for a while/forever).
But with functional online/offline events and properties you could handle things differently. So when the ajax call first errors out, check window.navigator.onLine. If it is false, then you can definitively tell the user that the error was due to loss of network (instead of having to guess between server timeout and network being down). It is much helpful to the user to say, "You won't get any more updates since you have disconnected from the network", than, "You won't get any more updates, check to see if you have disconnected from the network."
Additionally, you can setup a callback for the online event, so that you can _immediately_ retry the ajax call when the browser tells you the network is back. That's much better than the retry scenario because you are probably only retrying the ajax call once every several seconds and the online event would get the application back and running significantly more quickly.
So it seems to me that having real offline properties and events is invaluable, particularly in live/websocket/long polling web applications.
But with functional online/offline events and properties you could handle things differently. So when the ajax call first errors out, check window.navigator.onLine. If it is false, then you can definitively tell the user that the error was due to loss of network (instead of having to guess between server timeout and network being down). It is much helpful to the user to say, "You won't get any more updates since you have disconnected from the network", than, "You won't get any more updates, check to see if you have disconnected from the network."
Additionally, you can setup a callback for the online event, so that you can _immediately_ retry the ajax call when the browser tells you the network is back. That's much better than the retry scenario because you are probably only retrying the ajax call once every several seconds and the online event would get the application back and running significantly more quickly.
So it seems to me that having real offline properties and events is invaluable, particularly in live/websocket/long polling web applications.
[Deleted User] <[Deleted User]> #12
Everybody’s entitled to his own opinion, but opinions on wether this is useful or not shouldn’t make a difference in this case.
At the end of the day the ononline/onoffline events are part of the HTML5 spec, and all other modern browsers support them already. Why not WebKit/Chrome/Safari?
At the end of the day the ononline/onoffline events are part of the HTML5 spec, and all other modern browsers support them already. Why not WebKit/Chrome/Safari?
da...@chromium.org <da...@chromium.org> #13
Putting this back on the radar. I agree with the argument in https://crbug.com/chromium/7469#c10 . Thanks for your input.
[Deleted User] <[Deleted User]> #14
putting into m8 since that's the next mstone.
[Deleted User] <[Deleted User]> #15
The link state is really all we know anything about. I.e. we only know how the physical layer (WiFi/Ethernet) is doing. We don't know any thing about whether the internets are working. Are other implementations only looking at the link state?
Anyway, this clearly isn't making m8. Setting to X until we have some clear plan and/or owner.
Anyway, this clearly isn't making m8. Setting to X until we have some clear plan and/or owner.
jd...@gmail.com <jd...@gmail.com> #16
In response to https://crbug.com/chromium/7469#c14 , Fx3 and IE8 do both use link state for navigator.onLine and the associated events. That's according to testing I've done, but their respective docs seem to say the same:
https://developer.mozilla.org/En/Online_and_offline_events
http://msdn.microsoft.com/en-us/library/cc304129(VS.85).aspx#status_improvements
[Deleted User] <[Deleted User]> #17
te...@gmail.com <te...@gmail.com> #18
[Empty comment from Monorail migration]
si...@simonheckmann.de <si...@simonheckmann.de> #19
I tested this with Firefox 4b10 and it works very nicely there:
If I unplug the cable and disable WIFI it immediately throws the "offline" event. When I put the cable back in, it throws an "online" event. I understand the argument that this is not a 100% precise way to determine if there is a connection to a server or just to a network but it works as a pretty sweet indicator.
I hope this will make it's way into Chromium soon, because as far as offline applications go, Chrome has always been on the leading edge!
If I unplug the cable and disable WIFI it immediately throws the "offline" event. When I put the cable back in, it throws an "online" event. I understand the argument that this is not a 100% precise way to determine if there is a connection to a server or just to a network but it works as a pretty sweet indicator.
I hope this will make it's way into Chromium soon, because as far as offline applications go, Chrome has always been on the leading edge!
da...@chromium.org <da...@chromium.org> #21
[Empty comment from Monorail migration]
ad...@chromium.org <ad...@chromium.org> #22
[Empty comment from Monorail migration]
po...@gmail.com <po...@gmail.com> #23
am creating chrome web app that can work offline. would like to receive the events. at least let navigator.onLine work!
ad...@chromium.org <ad...@chromium.org> #24
[Empty comment from Monorail migration]
bu...@chromium.org <bu...@chromium.org> #25
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=76985
------------------------------------------------------------------------
r76985 | adamk@chromium.org | Fri Mar 04 14:42:08 PST 2011
Changed paths:
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/socket/client_socket_pool_base.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_win.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_win.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/render_messages_internal.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/socket/client_socket_pool_base.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/jingle/notifier/communicator/login.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/intranet_redirect_detector.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/google/google_url_tracker.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/renderer/render_view.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/dnsrr_resolver.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/sync/engine/syncapi.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/content/browser/tab_contents/tab_contents.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/io_thread.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/proxy/proxy_service.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/spdy/spdy_session_pool.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/host_resolver_impl.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/host_resolver_impl.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/spdy/spdy_session_pool.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/io_thread.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/proxy/proxy_service.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/content/browser/tab_contents/tab_contents.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/renderer/render_view.h?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/google/google_url_tracker.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/intranet_redirect_detector.cc?r1=76985&r2=76984&pathrev=76985
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/jingle/notifier/communicator/login.cc?r1=76985&r2=76984&pathrev=76985
Plumb through NetworkChangeNotifier::IsOffline() to WebKit, enabling
navigator.onLine and online/offline events. Only works on Windows at the moment, as IsCurrentlyOffline() is supported only by NetworkChangeNotifierWin.
Most of the changes are due to the need to support two different kinds of NetworkChangeNotifier observers. Both observers currently happen to trigger on the same event, but that could change, e.g., if we store the previous online state and only notify on a change. Thus the need for two different observer interfaces, and associated Add/Remove methods.
BUG=7469
TEST=Loadhttps://bug336359.bugzilla.mozilla.org/attachment.cgi?id=220609 , unplug network cable, reload, see that page changes to note offline status
Review URL:http://codereview.chromium.org/6526059
------------------------------------------------------------------------
------------------------------------------------------------------------
r76985 | adamk@chromium.org | Fri Mar 04 14:42:08 PST 2011
Changed paths:
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
M
Plumb through NetworkChangeNotifier::IsOffline() to WebKit, enabling
navigator.onLine and online/offline events. Only works on Windows at the moment, as IsCurrentlyOffline() is supported only by NetworkChangeNotifierWin.
Most of the changes are due to the need to support two different kinds of NetworkChangeNotifier observers. Both observers currently happen to trigger on the same event, but that could change, e.g., if we store the previous online state and only notify on a change. Thus the need for two different observer interfaces, and associated Add/Remove methods.
BUG=7469
TEST=Load
Review URL:
------------------------------------------------------------------------
os...@chromium.org <os...@chromium.org> #26
[Empty comment from Monorail migration]
os...@chromium.org <os...@chromium.org> #27
[Empty comment from Monorail migration]
os...@chromium.org <os...@chromium.org> #28
[Empty comment from Monorail migration]
er...@chromium.org <er...@chromium.org> #29
[Empty comment from Monorail migration]
ke...@google.com <ke...@google.com> #30
Moving out of M12.
ke...@google.com <ke...@google.com> #31
Moving out of M12.
kr...@chromium.org <kr...@chromium.org> #32
This is blocking chromium-os:4558 which is breaking a large number of pyauto tests on ChromeOS. Can we get this fixed soon?
ad...@chromium.org <ad...@chromium.org> #33
To be clear, r76985 already enabled this support on Windows, but I'm leaving the issue open to track progress on Mac & Linux implementations.
vk...@gmail.com <vk...@gmail.com> #34
Hi, I tried it in on Windows 7 with Chrome Dev Build 12.0.742.12, canary build 13.0.752.0 and 11.0.696.0 but not able to get it working on any.
What i am doing is:
Loadhttps://bug336359.bugzilla.mozilla.org/attachment.cgi?id=220609 , unplug network cable, wait and see that page changes to note offline status
Can some tell me in which build this fix is available?
Thanks a lot in advance
What i am doing is:
Load
Can some tell me in which build this fix is available?
Thanks a lot in advance
ad...@chromium.org <ad...@chromium.org> #35
Attached a version of the test case that I've tested on Chrome.
vk...@gmail.com <vk...@gmail.com> #36
With which Chrome build you tested? I tested this test just on 12.0.742.12 and see that navigator.onLine always returns true and ononline/onoffline events don't fire.
ad...@chromium.org <ad...@chromium.org> #37
I tested this on 12.0.742.12 on Windows 7.
vk...@gmail.com <vk...@gmail.com> #38
Got it. My machine had Virtual Ethernet Adapters installed. I get onoffline event only if i disable all the network adapters (doesn't matter if they can provide network access or not).
Is this behavior fine? When this event should get fired? Virtual Ethernet adapters are not providing you any internet/outside access so you are ideally offline at that time. Network and sharing center shows "No network access" in this situation so onoffline event should fire here.
What do you say?
Is this behavior fine? When this event should get fired? Virtual Ethernet adapters are not providing you any internet/outside access so you are ideally offline at that time. Network and sharing center shows "No network access" in this situation so onoffline event should fire here.
What do you say?
ad...@google.com <ad...@google.com> #39
It's a known issue that this detection isn't perfect: the definition of "online" is a bit fuzzy (what if you could connect to the local network but not any site on the internet?), and as you see, things like virtual interfaces can confuse our detection code. For reasons like this, the "offline" state is, in my opinion, much more valuable to web applications (since it has no false positives) than the "online" state.
But thanks for the report, and I'll log this as a feature request for our detection code.
But thanks for the report, and I'll log this as a feature request for our detection code.
la...@chromium.org <la...@chromium.org> #40
Moving !type=meta|regression and !releaseblocker to next mstone
bu...@chromium.org <bu...@chromium.org> #41
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=87699
------------------------------------------------------------------------
r87699 | adamk@google.com | Thu Jun 02 14:56:44 PDT 2011
Changed paths:
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_mac.cc?r1=87699&r2=87698&pathrev=87699
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_mac.h?r1=87699&r2=87698&pathrev=87699
Implement NetworkChangeNotifier::IsCurrentlyOffline() for Mac.
R=willchan@chromium.org
BUG=7469,53473
TEST=load onlineTest.html attachment onhttps://crbug.com/chromium/7469 ; disconnect/connect network cable
Review URL:http://codereview.chromium.org/7006015
------------------------------------------------------------------------
------------------------------------------------------------------------
r87699 | adamk@google.com | Thu Jun 02 14:56:44 PDT 2011
Changed paths:
M
M
Implement NetworkChangeNotifier::IsCurrentlyOffline() for Mac.
R=willchan@chromium.org
BUG=7469,53473
TEST=load onlineTest.html attachment on
Review URL:
------------------------------------------------------------------------
la...@chromium.org <la...@chromium.org> #42
[Empty comment from Monorail migration]
sa...@gmail.com <sa...@gmail.com> #43
fix it
[Deleted User] <[Deleted User]> #44
ad...@chromium.org <ad...@chromium.org> #45
This is supported in M14 (current stable) on Windows, Mac, and Chromium OS, so I'm closing this bug to better indicate the state of the world. https://crbug.com/chromium/53473 will stay open until Linux support is landed.
je...@google.com <je...@google.com> #46
[Empty comment from Monorail migration]
bu...@chromium.org <bu...@chromium.org> #47
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=110344
------------------------------------------------------------------------
r110344 | adamk@chromium.org | Wed Nov 16 11:51:53 PST 2011
Changed paths:
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.cc?r1=110344&r2=110343&pathrev=110344
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/net.gyp?r1=110344&r2=110343&pathrev=110344
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.h?r1=110344&r2=110343&pathrev=110344
Ahttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux_unittest.cc?r1=110344&r2=110343&pathrev=110344
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/DEPS?r1=110344&r2=110343&pathrev=110344
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux.cc?r1=110344&r2=110343&pathrev=110344
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux.h?r1=110344&r2=110343&pathrev=110344
Offline state detection for linux, using new D-Bus library.
BUG=53473
TEST=see attachment onhttps://crbug.com/chromium/7469
Review URL:http://codereview.chromium.org/8249008
------------------------------------------------------------------------
------------------------------------------------------------------------
r110344 | adamk@chromium.org | Wed Nov 16 11:51:53 PST 2011
Changed paths:
M
M
M
A
M
M
M
Offline state detection for linux, using new D-Bus library.
BUG=53473
TEST=see attachment on
Review URL:
------------------------------------------------------------------------
bu...@chromium.org <bu...@chromium.org> #48
The following revision refers to this bug:
http://src.chromium.org/viewvc/chrome?view=rev&revision=110374
------------------------------------------------------------------------
r110374 | adamk@chromium.org | Wed Nov 16 14:28:06 PST 2011
Changed paths:
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.cc?r1=110374&r2=110373&pathrev=110374
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/net.gyp?r1=110374&r2=110373&pathrev=110374
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier.h?r1=110374&r2=110373&pathrev=110374
Ahttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux_unittest.cc?r1=110374&r2=110373&pathrev=110374
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/DEPS?r1=110374&r2=110373&pathrev=110374
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux.cc?r1=110374&r2=110373&pathrev=110374
Mhttp://src.chromium.org/viewvc/chrome/trunk/src/net/base/network_change_notifier_linux.h?r1=110374&r2=110373&pathrev=110374
Offline state detection for linux, using new D-Bus library.
Relanding with fix for component build: use NET_EXPORT_PRIVATE
in network_change_notifier_linux.h.
BUG=53473
TEST=see attachment onhttps://crbug.com/chromium/7469
R=willchan@chromium.org
Review URL:http://codereview.chromium.org/8575013
------------------------------------------------------------------------
------------------------------------------------------------------------
r110374 | adamk@chromium.org | Wed Nov 16 14:28:06 PST 2011
Changed paths:
M
M
M
A
M
M
M
Offline state detection for linux, using new D-Bus library.
Relanding with fix for component build: use NET_EXPORT_PRIVATE
in network_change_notifier_linux.h.
BUG=53473
TEST=see attachment on
R=willchan@chromium.org
Review URL:
------------------------------------------------------------------------
bu...@chromium.org <bu...@chromium.org> #49
This issue has been closed for some time. No one will pay attention to new comments.
If you are seeing this bug or have new data, please click New Issue to start a new bug.
If you are seeing this bug or have new data, please click New Issue to start a new bug.
bu...@chromium.org <bu...@chromium.org> #50
[Empty comment from Monorail migration]
bu...@chromium.org <bu...@chromium.org> #51
[Empty comment from Monorail migration]
bu...@chromium.org <bu...@chromium.org> #52
[Empty comment from Monorail migration]
cr...@system.gserviceaccount.com <cr...@system.gserviceaccount.com> #53
[Empty comment from Monorail migration]
cr...@system.gserviceaccount.com <cr...@system.gserviceaccount.com> #54
[Empty comment from Monorail migration]
cr...@system.gserviceaccount.com <cr...@system.gserviceaccount.com> #55
[Empty comment from Monorail migration]
cr...@system.gserviceaccount.com <cr...@system.gserviceaccount.com> #56
[Empty comment from Monorail migration]
is...@google.com <is...@google.com> #57
This issue was migrated from crbug.com/chromium/7469?no_tracker_redirect=1
[Monorail blocking:crbug.com/chromium/186383 , crbug.com/chromium/197311 ]
[Monorail mergedwith:crbug.com/chromium/38084 , crbug.com/chromium/62052 , crbug.com/chromium/79295 ]
[Monorail components added to Component Tags custom field.]
[Monorail blocking:
[Monorail mergedwith:
[Monorail components added to Component Tags custom field.]
Description
Chrome Version : 2.0.160.0https://developer.mozilla.org/En/Online_and_offline_events
URLs (if applicable) :
Other browsers tested:
Add OK or FAIL after other browsers where you have tested this issue:
Safari 3: FAIL
Firefox 3: OK
IE 7: FAIL
IE 8: OK
What steps will reproduce the problem?
3.
What is the expected result?
Page should update, showing support for both the navigator.onLine (note spelling) Boolean property
and the online/offline events.
What happens instead?
Nothing.
Please provide any additional information below. Attach a screenshot if possible.
I have reported this to the webkit team here:
Note that, at one time, this was fixed for Safari/Mac. It has since regressed and I am petitioning to
have the bug reopened. It has never worked for Safari/Windows.
Cheers,