diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /layout/mathml/nsIMathMLFrame.h | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/mathml/nsIMathMLFrame.h')
-rw-r--r-- | layout/mathml/nsIMathMLFrame.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/layout/mathml/nsIMathMLFrame.h b/layout/mathml/nsIMathMLFrame.h index f27ef806e9..efe550e0fa 100644 --- a/layout/mathml/nsIMathMLFrame.h +++ b/layout/mathml/nsIMathMLFrame.h @@ -291,11 +291,6 @@ struct nsPresentationData { // feature setting. #define NS_MATHML_DTLS 0x00000080U -// This bit is set when the frame cannot be formatted due to an -// error (e.g., invalid markup such as a <msup> without an overscript). -// When set, a visual feedback will be provided to the user. -#define NS_MATHML_ERROR 0x80000000U - // a bit used for debug #define NS_MATHML_STRETCH_DONE 0x20000000U @@ -324,9 +319,6 @@ struct nsPresentationData { #define NS_MATHML_IS_DTLS_SET(_flags) \ (NS_MATHML_DTLS == ((_flags) & NS_MATHML_DTLS)) -#define NS_MATHML_HAS_ERROR(_flags) \ - (NS_MATHML_ERROR == ((_flags) & NS_MATHML_ERROR)) - #define NS_MATHML_STRETCH_WAS_DONE(_flags) \ (NS_MATHML_STRETCH_DONE == ((_flags) & NS_MATHML_STRETCH_DONE)) |