Skip to content

Commit c6691d1

Browse files
Remove duplicate foreign definition in Web.HTML.HTMLInputElement.
1 parent d6960bc commit c6691d1

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/Web/HTML/HTMLInputElement.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -588,22 +588,6 @@ exports["stepDown'"] = function (n) {
588588

589589
// ----------------------------------------------------------------------------
590590

591-
exports.value = function (input) {
592-
return function () {
593-
return input.value;
594-
};
595-
};
596-
597-
exports.setValue = function (value) {
598-
return function (input) {
599-
return function () {
600-
input.value = value;
601-
};
602-
};
603-
};
604-
605-
// ----------------------------------------------------------------------------
606-
607591
exports.willValidate = function (input) {
608592
return function () {
609593
return input.willValidate;

0 commit comments

Comments
 (0)