If HTML5 specifies that there is no value for the "checked" attribute that is reliably interpreted as the checkbox being unchecked*, is the behavior of the following JSX code potentially inconsistent between browsers? (It seems to work as expected for me in Chrome and IE.)
<input type="checkbox" checked={node.props.checked} />
If so, what is the standard way to accomplish this, considering that the following JSX is invalid?
<input type="checkbox" {node.props.checked? "checked" : ""} />