diff options
author | athenian200 <athenian200@outlook.com> | 2020-01-16 14:15:23 -0600 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:16:48 +0200 |
commit | 8ae2267eacb0527e80aadde4e64418f7901ef210 (patch) | |
tree | 8a1d3bb4e15fa5ba12ab0caad5970360dac8ae65 /dom/html/nsGenericHTMLElement.h | |
parent | 563dc95cdbdd94496360f14fc277c4b8fc79bbab (diff) | |
download | UXP-8ae2267eacb0527e80aadde4e64418f7901ef210.tar UXP-8ae2267eacb0527e80aadde4e64418f7901ef210.tar.gz UXP-8ae2267eacb0527e80aadde4e64418f7901ef210.tar.lz UXP-8ae2267eacb0527e80aadde4e64418f7901ef210.tar.xz UXP-8ae2267eacb0527e80aadde4e64418f7901ef210.zip |
Issue #1356 - Restore older syntax.
Some newer Firefox syntax snuck into my last bug. Just to be on the safe side I'm restoring the older syntax here.
Diffstat (limited to 'dom/html/nsGenericHTMLElement.h')
-rw-r--r-- | dom/html/nsGenericHTMLElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/nsGenericHTMLElement.h b/dom/html/nsGenericHTMLElement.h index 940404f93..acbebe087 100644 --- a/dom/html/nsGenericHTMLElement.h +++ b/dom/html/nsGenericHTMLElement.h @@ -818,7 +818,7 @@ public: * Returns the current disabled state of the element. */ bool IsDisabled() const { - return State().HasState(NS_EVENT_STATE_DISABLED); + return HasAttr(kNameSpaceID_None, nsGkAtoms::disabled); } bool IsHidden() const |