Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Canvas and HTML5: Supported Browsers?

I am looking at using HTML5 Canvas element for my upcoming project. I want to know what all major browsers (including the versions!, cos i know that the latest builds do support canvas) support the Canvas tag. I don't give a damn about IE. So don't bother reporting IE. :) In this tutorial Drawing shapes - MDC, the quadraticCurveTo section says:

quadraticCurveTo(cp1x, cp1y, x, y) // BROKEN in Firefox 1.5 (see work around below)

Does that mean that Canvas is supported on Firefox 1.5 and above too?

like image 876
Shripad Krishna Avatar asked Apr 20 '10 16:04

Shripad Krishna


People also ask

Which browser does the HTML5 supports?

HTML5 is now compatible with all popular browsers (Chrome, Firefox, Safari, IE9, and Opera) and with the introduction of DOCTYPE, it is even possible to have a few HTML features in older versions of Internet Explorer too.

Which browsers work well with Canvas?

Recommended by Canvas We recommend using Firefox or Chrome when accessing Canvas. Safari is a common browser for Mac users, but there are some features with Canvas that don't work well in Safari. Internet Explorer is not a recommended browser for Canvas, so please do not use it.

Is Canvas supported in HTML5?

Browser SupportThe latest versions of Firefox, Safari, Chrome and Opera all support for HTML5 Canvas but IE8 does not support canvas natively.

Which browsers do not support Canvas?

Canvas does not support Internet Explorer. You will experience many problems if you use this unsupported browser. These problems include course content not opening correctly or showing up and problems submitting assignments. Firefox, Chrome (or Safari for Mac users) really are the best bets when using Canvas.


1 Answers

caniuse.com lists browser support for many different features, including canvas.

Specifically, browser support for canvas is listed at caniuse.com/#search=canvas.

like image 157
brainjam Avatar answered Sep 27 '22 18:09

brainjam