summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/forms/step_range.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-16 11:45:35 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-17 08:59:23 +0000
commit552906b0f222c5d5dd11b9fd73829d510980461a (patch)
tree3a11e6ed0538a81dd83b20cf3a4783e297f26d91 /chromium/third_party/blink/renderer/core/html/forms/step_range.h
parent1b05827804eaf047779b597718c03e7d38344261 (diff)
downloadqtwebengine-chromium-552906b0f222c5d5dd11b9fd73829d510980461a.tar.gz
BASELINE: Update Chromium to 83.0.4103.122
Change-Id: Ie3a82f5bb0076eec2a7c6a6162326b4301ee291e Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/forms/step_range.h')
-rw-r--r--chromium/third_party/blink/renderer/core/html/forms/step_range.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/forms/step_range.h b/chromium/third_party/blink/renderer/core/html/forms/step_range.h
index 796a496c438..70f2005da08 100644
--- a/chromium/third_party/blink/renderer/core/html/forms/step_range.h
+++ b/chromium/third_party/blink/renderer/core/html/forms/step_range.h
@@ -74,6 +74,7 @@ class CORE_EXPORT StepRange {
const Decimal& minimum,
const Decimal& maximum,
bool has_range_limitations,
+ bool supports_reversed_range,
const Decimal& step,
const StepDescription&);
@@ -85,6 +86,8 @@ class CORE_EXPORT StepRange {
Decimal Minimum() const { return minimum_; }
// https://html.spec.whatwg.org/C/#have-range-limitations
bool HasRangeLimitations() const { return has_range_limitations_; }
+ // https://html.spec.whatwg.org/C/#has-a-reversed-range
+ bool HasReversedRange() const;
static Decimal ParseStep(AnyStepHandling,
const StepDescription&,
const String&);
@@ -123,6 +126,7 @@ class CORE_EXPORT StepRange {
const StepDescription step_description_;
const bool has_step_;
const bool has_range_limitations_;
+ const bool supports_reversed_range_;
};
} // namespace blink