|
I've tested in Chrome, do I need to test in Safari?
Started by nickf on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Also Chrome, so if you use Javascript....
I've noticed Safari handles Asian characters better than Chrome.
On Safari then Chrome, also Chrome uses the V8 JavaScript engine which has caused some people git if you like.
|
|
Given that Chrome and Safari use webkit has anyone yet found anything that renders differently on Chrome than Safari? Is there any reason at the moment to test sites on both, or would testing Safari be sufficient for right now?
Started by tloach on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Over time be different, the Java....
Chrome is currently using a slightly older version of Webkit than Safari.
Google Chrome also uses an earlier version of Webkit than the current Safari, so pages should of Chrome yet.
|
|
In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
Started by GvS on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Questions/233719/is-it-possible-to-read-the-clipboard-in-firefox-safari-and-chrome-using-javascri-with-javascript-in-firefox-safari-ie-opera-292559a2-cc6c-4ebf-9724-d23e8bc5ad8a/
function.
|
Ask your Facebook Friends
|
I'm trying to read the contents of the clipboard using Javascript. With Internet Explorer it's possible using
window.clipdData.getData("Text")
Is there a similar way of reading the clipboard in Firefox, Safari and Chrome?
Started by gilfaria on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Safari supports reading the clipboard during onpaste events.
All they need to do is paste.
|
|
There is a major problem in Safari for Windows and Google Chrome: When I open orkut in both of these browsers, the language selector in the scrap composer is absent and also that box where we write our text (scrapbox) becomes resizable.
Does anyone know...
Started by Rahul Vyas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Both Safari and Chrome use the same rendering engine (webkit) so I'm guessing that whatever html, such as Safari on the Mac?
Newer browsers tend to be less tolerant of web sites not following the spec.
|
|
I asked,
Can you tell me why my searches are working ok in IE8 but get stuck with safari and chrome?
www.netivot.biz
The ajax code is at www.netivot.biz/js/Ajax.js
It works with some xml and xslt files
then jitter suggested to preplace my code with :
...
Started by qaedus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else if (window.ActiveXObject.
|
|
MBP running 10.6. This started on the Apache JIRA site. I went to attach a file to a JIRA entry in Chrome 4.0.249.30. Chrome crashed, repeatedly, every time I selected a file from the choose file button.
Then I went to Firefox. I was surprised to get ...
Started by bmargulies on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Turns out that my SnowLeopard was not patched up to date, and all this got better when I updated it. .
No solution though...it must be some virus...it just started happening recently for me too .
Same thing here....
|
|
In IE and FF, i can attach an event handler to onBeforeUnload, and by passing a string to a property of the event, the user will see a dialog asking him whether he wants to continue with the "unloading" (either closing the window or navigating away).
...
Started by Daniel Magliola on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This works perfectly for me in both Chrome and Safari:
<html><body><p>Test< onbeforeunload , and it works fine for me in Safari:
function setConfirmUnload(a){window.onbeforeunload.
|
|
Two things I miss from Firefox and Chrome when using Safari on Mac are the Command + Option + Arrows, that are replaced by Control + Tab or Command + Shift + Arrows, and specially the Command + #number, which will invoke bookmarks instead of tabs.
So ...
Started by Cawas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
They both use FastScripts and this applescript:
try tell front window of application "Safari" to set current tab to tab 1 on error tell front window of application "Safari" to set current tab to last tab end try
You'd have to save 9 files....
|
|
If you try to send an Ajax request, a JSONP request, or even a window.name request on unload, Safari and Chrome run the code, but the server never sees the request. My theory is the thread of execution never allows the script tag to run before it changes...
Started by moschel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I Think that the onbeforeunload did not work well in safari and opera,for Opera ,there is a problem in its event Model ,for safari I just know I cant send my request to Server with the onbeforeunload for the tip on using synchronous XHR ....
|