Which HTML 5 attributes, properties, and other stuff can be degradable in non-supporting browsers, even without providing fallback?
For example:
<input type="text" placeholder="Type here" />
In a non-supporting browsers the placeholder text will not show , which is ok to me.
As far as the markup goes, pretty much everything degrades well in older browsers:
placeholderexample)They tried to design HTML5 to work in existing browsers; see:
The new JavaScript APIs obviously won’t work in older browsers, because they don’t exist there.