File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
2-ui/1-document/05-basic-dom-node-properties Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,20 +91,20 @@ interface HTMLInputElement: HTMLElement {
9191 // here go properties and methods of <input> elements
9292
9393*!*
94- // "DOMString" means that these properties are strings
94+ // "DOMString" means that the value of these properties are strings
9595*/!*
9696 attribute DOMString accept;
9797 attribute DOMString alt;
9898 attribute DOMString autocomplete;
9999 attribute DOMString value;
100100
101101*!*
102- // boolean property (true/false)
102+ // boolean value property (true/false)
103103 attribute boolean autofocus;
104104*/!*
105105 ...
106106*!*
107- // now the method: "void" means that that returns no value
107+ // now the method: "void" means that the method returns no value
108108*/!*
109109 void select();
110110 ...
You can’t perform that action at this time.
0 commit comments