The html5 specification often contains the notion idl-attribute. For example, from the description of the attribute title
"The title IDL attribute must reflect the title content attribute"
Approximate translation: "idl-title attribute should display the contents of the title attribute"
Do not understand what this phrase means? And here idl and what does idl have to do with html? I thought idl is a completely different language.
Or, for example, the style attribute.
"The style IDL attribute is defined in the CSS Object Model (CSSOM) specification"
Approximate translation: "The idl-style attribute is defined in the CSS Object Model (CSSOM) specification specification"
It is clear that this attribute is defined in such a specification, but what is this attribute? What is it for, what does it give? and what does the html specification have to do with it?
<input maxlength="123">. There is an attributemaxlength. Get it this way:element.getAttribute("maxlength"). And it is possible through the IDL-attribute -element.maxlength. developer.mozilla.org/ru/docs/Web/HTML/… - Sergey