From c6691d189f7d12f7b8c5905a0faaccaec08fc70c Mon Sep 17 00:00:00 2001 From: Utkarsh Kukreti Date: Fri, 7 Sep 2018 20:26:58 +0530 Subject: [PATCH] Remove duplicate foreign definition in Web.HTML.HTMLInputElement. --- src/Web/HTML/HTMLInputElement.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Web/HTML/HTMLInputElement.js b/src/Web/HTML/HTMLInputElement.js index 9223279..bf37046 100644 --- a/src/Web/HTML/HTMLInputElement.js +++ b/src/Web/HTML/HTMLInputElement.js @@ -588,22 +588,6 @@ exports["stepDown'"] = function (n) { // ---------------------------------------------------------------------------- -exports.value = function (input) { - return function () { - return input.value; - }; -}; - -exports.setValue = function (value) { - return function (input) { - return function () { - input.value = value; - }; - }; -}; - -// ---------------------------------------------------------------------------- - exports.willValidate = function (input) { return function () { return input.willValidate;