From 77fbaff2faf6fc341e30a309f7e68458f2864ad9 Mon Sep 17 00:00:00 2001 From: janekptacijarabaci Date: Fri, 30 Mar 2018 23:25:42 +0200 Subject: Bug 1363672 - Add step support to date picker (follow up) Bug 1374967: https://bugzilla.mozilla.org/show_bug.cgi?id=1374967 (partially - implement getStep/getStepBase) --- dom/html/HTMLInputElement.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dom/html') diff --git a/dom/html/HTMLInputElement.h b/dom/html/HTMLInputElement.h index 2321b7338..adab663c3 100644 --- a/dom/html/HTMLInputElement.h +++ b/dom/html/HTMLInputElement.h @@ -800,6 +800,8 @@ public: * The following are called from datetime input box binding to get the * corresponding computed values. */ + double GetStepAsDouble() { return GetStep().toDouble(); } + double GetStepBaseAsDouble() { return GetStepBase().toDouble(); } double GetMinimumAsDouble() { return GetMinimum().toDouble(); } double GetMaximumAsDouble() { return GetMaximum().toDouble(); } -- cgit v1.2.3