We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 924ec1e commit a3c4ef8Copy full SHA for a3c4ef8
2-ui/1-document/05-basic-dom-node-properties/article.md
@@ -91,20 +91,20 @@ interface HTMLInputElement: HTMLElement {
91
// here go properties and methods of <input> elements
92
93
*!*
94
- // "DOMString" means that these properties are strings
+ // "DOMString" means that the value of these properties are strings
95
*/!*
96
attribute DOMString accept;
97
attribute DOMString alt;
98
attribute DOMString autocomplete;
99
attribute DOMString value;
100
101
102
- // boolean property (true/false)
+ // boolean value property (true/false)
103
attribute boolean autofocus;
104
105
...
106
107
- // now the method: "void" means that that returns no value
+ // now the method: "void" means that the method returns no value
108
109
void select();
110
0 commit comments