summaryrefslogtreecommitdiffstats
path: root/layout/inspector/inDOMUtils.cpp
diff options
context:
space:
mode:
authorathenian200 <athenian200@outlook.com>2020-09-17 16:01:38 -0500
committerathenian200 <athenian200@outlook.com>2020-09-17 16:01:38 -0500
commitb5c9f8e24e6ce368532f893fbd9a517b79096839 (patch)
tree103df6df754ae5d6dc93a432aeb54254777834b1 /layout/inspector/inDOMUtils.cpp
parent51764ac7228e723054bf304a381cc83d9067f10a (diff)
downloadUXP-b5c9f8e24e6ce368532f893fbd9a517b79096839.tar
UXP-b5c9f8e24e6ce368532f893fbd9a517b79096839.tar.gz
UXP-b5c9f8e24e6ce368532f893fbd9a517b79096839.tar.lz
UXP-b5c9f8e24e6ce368532f893fbd9a517b79096839.tar.xz
UXP-b5c9f8e24e6ce368532f893fbd9a517b79096839.zip
Issue #1647 - Part 2: Implement VARIANT_OPACITY to correctly serialize.
Even though percentages are already treated as floats internally by the style system for computation purposes, you have to go out of your way to stop them from being read back out as percentages. What I do here amounts to storing the percentage token in the "wrong" container, the one normally used for floats. This allows a value that was read in as a percentage to be read back out as something else, which is normally prevented by the design of the style system.
Diffstat (limited to 'layout/inspector/inDOMUtils.cpp')
-rw-r--r--layout/inspector/inDOMUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/layout/inspector/inDOMUtils.cpp b/layout/inspector/inDOMUtils.cpp
index 58afc5f76..a28b35ef8 100644
--- a/layout/inspector/inDOMUtils.cpp
+++ b/layout/inspector/inDOMUtils.cpp
@@ -842,7 +842,7 @@ PropertySupportsVariant(nsCSSPropertyID aPropertyID, uint32_t aVariant)
case eCSSProperty_grid_row_end:
case eCSSProperty_font_weight:
case eCSSProperty_initial_letter:
- supported = VARIANT_NUMBER;
+ supported = VARIANT_NUMBER | VARIANT_OPACITY;
break;
default:
@@ -905,7 +905,7 @@ inDOMUtils::CssPropertySupportsType(const nsAString& aProperty, uint32_t aType,
break;
case TYPE_NUMBER:
// Include integers under "number"?
- variant = VARIANT_NUMBER | VARIANT_INTEGER;
+ variant = VARIANT_NUMBER | VARIANT_INTEGER | VARIANT_OPACITY;
break;
default:
// Unknown type