summaryrefslogtreecommitdiffstats
path: root/dom/webidl
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-30 23:25:42 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-03-30 23:25:42 +0200
commit77fbaff2faf6fc341e30a309f7e68458f2864ad9 (patch)
tree273e3f45eaffcb66b1255c4b57bd6be3b4b461bc /dom/webidl
parent5941771281f0385328444f2a7f9643fb87e0a2e1 (diff)
downloadUXP-77fbaff2faf6fc341e30a309f7e68458f2864ad9.tar
UXP-77fbaff2faf6fc341e30a309f7e68458f2864ad9.tar.gz
UXP-77fbaff2faf6fc341e30a309f7e68458f2864ad9.tar.lz
UXP-77fbaff2faf6fc341e30a309f7e68458f2864ad9.tar.xz
UXP-77fbaff2faf6fc341e30a309f7e68458f2864ad9.zip
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)
Diffstat (limited to 'dom/webidl')
-rw-r--r--dom/webidl/HTMLInputElement.webidl8
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/webidl/HTMLInputElement.webidl b/dom/webidl/HTMLInputElement.webidl
index c551d96ab..cf3e9a4c7 100644
--- a/dom/webidl/HTMLInputElement.webidl
+++ b/dom/webidl/HTMLInputElement.webidl
@@ -269,4 +269,12 @@ partial interface HTMLInputElement {
[Pref="dom.forms.datetime", Func="IsChromeOrXBL"]
void closeDateTimePicker();
+
+ [Pref="dom.forms.datetime", Func="IsChromeOrXBL",
+ BinaryName="getStepAsDouble"]
+ double getStep();
+
+ [Pref="dom.forms.datetime", Func="IsChromeOrXBL",
+ BinaryName="getStepBaseAsDouble"]
+ double getStepBase();
};