I've done a little digging into the HTML5 canvas support of the Nintendo 3DS Internet Browser, since it will be used for the 3DSPaint app (as well as others). It seems to be a fairly competent implementation that just was not possible on the Nintendo DSi Browser's limited RAM. NetFront is based on the WebKit layout engine, which was originally used in Apple's Safari browser and later Google's Chrome browser, so there are similarities.
Here is the list of supported functions and properties in the 2D context for developers to reference:
There is a quirk in the Nintendo 3DS implementation of the canvas object. The browser does not seem to refresh it for any procedurally-generated content, such as lines and curves, so something has to be done to the canvas to force a refresh. The simplest method I found was altering a style to it, such as the background color (which you can cover completely with canvas content). I toggle between the color #000 and #111 with the following code:
As I continue to research the canvas implementation, I will try to have more to report. This should at least give a good start for developers.
Here's a quickly hacked together version of the DSiPaint app that works on the Nintendo 3DS Internet Browser. Keep in mind that the final app will be considerably different, as promised in old blogs and BB posts I've made.
(Sorry for the multi-posts but I feel I should say this.)And guys, keep in mind that Hull found these and this is barely the HTML5 part of the browser. Now imagine the the new Javascripts! It supports full AJAX so I'm excited for that!
PHP functions are implemented into the browser. It might not be our average scripts we know, but there is a secret to where it'll work. You'll see when we start developing 3DSU.