Main public logs
From PiRho Knowledgebase
Jump to navigationJump to search
Combined display of all available logs of PiRho Knowledgebase. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:06, 12 July 2026 Dex talk contribs created page HTML5 Feature Detection: Presence vs Behaviour (Created page with "Most HTML5 feature detection articles get it wrong. The classic approach was: <syntaxhighlight lang="javascript"> if(document.createElement("canvas").getContext) { // Canvas supported } </syntaxhighlight> Or even worse: <syntaxhighlight lang="javascript"> if(window.localStorage) { // LocalStorage supported } </syntaxhighlight> The problem is that these tests only prove that an API exists. They do '''not''' prove that it is functional. A browser may: * Expo...")