summaryrefslogtreecommitdiffstats
path: root/dom/base/nsAttrValue.h
diff options
context:
space:
mode:
authorwin7-7 <win7-7@users.noreply.github.com>2020-02-03 16:59:23 +0200
committerwin7-7 <win7-7@users.noreply.github.com>2020-02-03 16:59:23 +0200
commit52940bc44c14382bfd26f55ff48ffaa372d43497 (patch)
treef39220ec5133ad2055bec7bcfbc5568fb0f160e4 /dom/base/nsAttrValue.h
parentbbbfd00f95d2d689aabe0087e597efab48442a18 (diff)
downloadUXP-52940bc44c14382bfd26f55ff48ffaa372d43497.tar
UXP-52940bc44c14382bfd26f55ff48ffaa372d43497.tar.gz
UXP-52940bc44c14382bfd26f55ff48ffaa372d43497.tar.lz
UXP-52940bc44c14382bfd26f55ff48ffaa372d43497.tar.xz
UXP-52940bc44c14382bfd26f55ff48ffaa372d43497.zip
Issue #1384 - Match standard for colSpan/rowSpan
HTML standardizes proper behavior of colSpan and rowSpan: The main thing is that getting the .rowSpan and .colSpan IDL properties will now return the actual clamped value that we use.
Diffstat (limited to 'dom/base/nsAttrValue.h')
-rw-r--r--dom/base/nsAttrValue.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/dom/base/nsAttrValue.h b/dom/base/nsAttrValue.h
index 655e4ca61..23f61a614 100644
--- a/dom/base/nsAttrValue.h
+++ b/dom/base/nsAttrValue.h
@@ -362,6 +362,19 @@ public:
*/
bool ParseNonNegativeIntValue(const nsAString& aString);
+ /**
+ * Parse a string value into a clamped non-negative integer.
+ * This method follows the rules for parsing non-negative integer from:
+ * https://html.spec.whatwg.org/multipage/infrastructure.html#clamped-to-the-range
+ *
+ * @param aString the string to parse
+ * @param aDefault value to return for negative or invalid values
+ * @param aMin minimum value
+ * @param aMax maximum value
+ */
+ void ParseClampedNonNegativeInt(const nsAString& aString, int32_t aDefault,
+ int32_t aMin, int32_t aMax);
+
/**
* Parse a string value into a positive integer.
* This method follows the rules for parsing non-negative integer from: