diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-30 21:13:59 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-30 21:13:59 +0200 |
commit | 5e69b904229a13b423b6a2a1f3be4c50ffd2c505 (patch) | |
tree | 2202a4eb6edeae3807b8f835f178f4a28a9b1e25 /dom/html | |
parent | 6f1fcab2d81caedd96d9404386bc92f9884c30ce (diff) | |
download | uxp-5e69b904229a13b423b6a2a1f3be4c50ffd2c505.tar.gz |
Bug 1364026 - (Part 1) Expose HTMLInputElement.getMinimum/getMaximum methods via webidl
Diffstat (limited to 'dom/html')
-rw-r--r-- | dom/html/HTMLInputElement.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dom/html/HTMLInputElement.h b/dom/html/HTMLInputElement.h index fde12b817d..2321b7338e 100644 --- a/dom/html/HTMLInputElement.h +++ b/dom/html/HTMLInputElement.h @@ -796,6 +796,13 @@ public: void UpdateDateTimePicker(const DateTimeValue& aValue); void CloseDateTimePicker(); + /* + * The following are called from datetime input box binding to get the + * corresponding computed values. + */ + double GetMinimumAsDouble() { return GetMinimum().toDouble(); } + double GetMaximumAsDouble() { return GetMaximum().toDouble(); } + HTMLInputElement* GetOwnerNumberControl(); HTMLInputElement* GetOwnerDateTimeControl(); |