diff options
Diffstat (limited to 'WebCore/html/HTMLFormElement.h')
-rw-r--r-- | WebCore/html/HTMLFormElement.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/html/HTMLFormElement.h b/WebCore/html/HTMLFormElement.h index 5a3eee5..73a4aba 100644 --- a/WebCore/html/HTMLFormElement.h +++ b/WebCore/html/HTMLFormElement.h @@ -150,6 +150,11 @@ private: bool m_inreset : 1; bool m_malformed : 1; String oldNameAttr; +#ifdef ANDROID_FIX + // addressing webkit bug, http://bugs.webkit.org/show_bug.cgi?id=16512 + // ensure the oldNameAttr is removed from HTMLDocument's NameCountMap + int oldNameCount; +#endif }; } // namespace WebCore |