-
Don't get me wrong, HTML5Test is pretty neat/great! And the latest (http://beta.html5test.com/) looks pretty great UI wise.
But the scores for the entire test seems very opinionated and grossly dispr…
-
http://www.whatwg.org/specs/web-apps/current-work/#attr-iframe-sandbox
http://blog.chromium.org/2010/05/security-in-depth-html5s-sandbox.html
The Chromium blog post shows how to detect it:
```
if (…
-
Looking at beta.html5test.com, I wondered how up-to-date it was with regards to this repository. Perhaps show what commit is deployed, and maybe what date that commit was made?
blixt updated
14 years ago
-
http://www.w3.org/TR/html5/webappapis.html#dom-navigator-registerprotocolhandler describes two APIs:
window.navigator.registerContentHandler
window.navigator.registerProtocolHandler
that are really …
-
I was looking at http://html5test.com/ this afternoon and was a little confused when it reported that Safari on Mac OS X does not support MP3 or AAC codecs within those tags. Looking at the source it…
-
This is separate from the issue of color coding the scores. It would be very helpful to color code Yes/No values to make it quicker to scan results.
-
html5test.com check for elements is flawed. WebKit's toString is HTMLElement for _any_ unknown element. toString seems fragile anyway
/via pornelski
-
-
This is the code for checking websocket support
```
var ws_support = false;
try{
new WebSocket("ws://test:80");
ws_support = true;
} catch (e){
}
alert (ws_sup…
-
It would be a great idea for HTML5 beginners to add a link on each property your are testing. I think to w3schools because I saw this made elsewhere. But as they don't include ID to create anchor link…