Loading image with data uri as source doesnt work in safari - html

Loading image with data uri as source doesnt work in safari.
I am using the following source value see: http://jsfiddle.net/VnnhS/
<img src='data...'/>
everything is working with chrome IE and FF.
could it be size limitation?

It isn't normal because here says that Safari supports it, so I don't know what is your problem, can you send a screenshot?

Related

svg is not properly rendering when navigate route in safari, angular

My problem is that SVG is not rendering properly when url has some route like 'localhost/hello' in Safari
In Chrome, Working fine.
You can compare this problem using both browser ( Chrome, Safari ) in your computer using my example
example)
https://stackblitz.com/edit/angular-ruscfd
How to solve this problem using general approach which make this rendering issue work properly in both browser??
Plz help.
In Safari
In Chrome

HTML file:// links : open in explorer from Chrome

I have an html file with links like that :
folder name
I would like that this link opens explorer instead of a custome chrome file html based browser. This works from IE btw.
Thank you !
Nicolas.
For Chrome, Safari and Opera this isn't possible due to their security model. However, there is somewhat of a solution for Chrome in that it's possible but it has two requirements:
You need to get the user to install this Chrome extension
It must be over https://
You will probably encounter the same problem for Firefox since it usually requires LocalLink.
Further reading

Image transformation via CSS not applied in Chrome & IE

This is my code and working fine in Firefox, however its not working in the required format what FF showing this time in chrome and IE.
When page load it shows even in Chrome but after that all transformation stops working, let me know what I am doing wrong or how do i fix it.
NOTE- I know blank.jpg does not exists here, but I am sure this wont hurt still for the fix.
Fiddle - Star Fix
FF screenshot (Require)
Chrome screenshot(Not correct)
It does make a difference that blank.jpg does not exists here, Firefox handles the image as 0x0 but Chrome handles it as 50x50 because thats what you set in the <img> Tag
JSFiddle

Image not being loaded in IE9

On my test facebook page's application I am displaying an image which is loading fine on Chrome/Firefox but fails to load on IE9, all I get is 304. I have been browsing around similar IE9 issues but have not found a satisfactory answer for this problem. I also cleared TIFs in IE9 which has removed all the 304s but is changed the status of image file as "(Aborted)". Attached is a screenshot for both Chrome and IE9.
in Chrome-
in IE9-
status in IE9-
adding "http://" in the img src field displays it fine for me in ie9 on jfiddle...

Safari HTML5 offline problem

I am trying to run a script that supports for HTML5 offline working. It works fine in Firefox but not in safari. I want it to work in safari too. You can see here.
http://vps.sunztech.com/clock.html
HOW TO CHECK OFFLINE WORKING: open the URL when internet is connected.close the browser after loading all contents. now disable internet and load that URL again it should show the the data from cache.
The above is working fine in Firefox but not in Safari.
May anyone can give me the solution...
I will be thankful
Make sure that the manifest file is served as type text/cache-manifest. There are several other guidelines worth checking in Apple's developer documentation for iPhone and Mobile Safari.