diff options
author | athenian200 <athenian200@outlook.com> | 2020-05-20 23:25:37 -0500 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-21 13:10:27 +0000 |
commit | 8b44473fe65a1dd6eb30525e0d4f1370010b2d54 (patch) | |
tree | 9c53472972470607131bdf2978d4ec73993f4d0d /layout/generic | |
parent | 6e0aee959ecc485297c2da5bc9229d3cff13ccc4 (diff) | |
download | UXP-8b44473fe65a1dd6eb30525e0d4f1370010b2d54.tar UXP-8b44473fe65a1dd6eb30525e0d4f1370010b2d54.tar.gz UXP-8b44473fe65a1dd6eb30525e0d4f1370010b2d54.tar.lz UXP-8b44473fe65a1dd6eb30525e0d4f1370010b2d54.tar.xz UXP-8b44473fe65a1dd6eb30525e0d4f1370010b2d54.zip |
Revert "Merge pull request #1357 from athenian200/form-disabled-issue"
This reverts commit ed88b99849156004c04e4a0c87ea9b2360ef19b6, reversing
changes made to c4b0715baaffc541670fd1158557aa7e61e521d3.
Diffstat (limited to 'layout/generic')
-rw-r--r-- | layout/generic/nsFrame.cpp | 13 | ||||
-rw-r--r-- | layout/generic/nsIFrame.h | 5 |
2 files changed, 0 insertions, 18 deletions
diff --git a/layout/generic/nsFrame.cpp b/layout/generic/nsFrame.cpp index 0d0c7108c..b8b1f312e 100644 --- a/layout/generic/nsFrame.cpp +++ b/layout/generic/nsFrame.cpp @@ -5557,19 +5557,6 @@ nsFrame::Reflow(nsPresContext* aPresContext, NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aDesiredSize); } -bool -nsIFrame::IsContentDisabled() const -{ - // FIXME(emilio): Doing this via CSS means callers must ensure the style is up - // to date, and they don't! - if (StyleUserInterface()->mUserInput == StyleUserInput::None) { - return true; - } - - auto* element = nsGenericHTMLElement::FromContentOrNull(GetContent()); - return element && element->IsDisabled(); -} - nsresult nsFrame::CharacterDataChanged(CharacterDataChangeInfo* aInfo) { diff --git a/layout/generic/nsIFrame.h b/layout/generic/nsIFrame.h index 93eb95099..57f5c460c 100644 --- a/layout/generic/nsIFrame.h +++ b/layout/generic/nsIFrame.h @@ -2436,11 +2436,6 @@ public: nsIWidget* GetNearestWidget(nsPoint& aOffset) const; /** - * Whether the content for this frame is disabled, used for event handling. - */ - bool IsContentDisabled() const; - - /** * Get the "type" of the frame. May return nullptr. * * @see nsGkAtoms |