For example, the img
element forwards the the src
prop onto the src
attribute, as in I can write
document.querySelector('img').src = 'foo.png'
and then this will set the attribute.
Are there elements that don’t get their props forwarded to attributes?
Where can I see a list of which elements forward, and which don’t?