[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_html.cpp
Timothy
thatcher at opensource.apple.com
Thu Dec 15 13:37:52 PST 2005
thatcher 05/12/15 13:37:52
Modified: . Tag: Safari-1-3-branch ChangeLog
khtml/ecma Tag: Safari-1-3-branch kjs_html.cpp
Log:
<rdar://problem/4381444> Remove GMail-specific work-around previously added
* khtml/ecma/kjs_html.cpp:
(KJS::HTMLElement::textAreaGetter): Remove GMail workaround.
Revision Changes Path
No revision
No revision
1.335.2.56 +7 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.335.2.55
retrieving revision 1.335.2.56
diff -u -r1.335.2.55 -r1.335.2.56
--- ChangeLog 14 Dec 2005 22:45:19 -0000 1.335.2.55
+++ ChangeLog 15 Dec 2005 21:37:34 -0000 1.335.2.56
@@ -1,5 +1,12 @@
2005-12-14 Timothy Hatcher <timothy at apple.com>
+ <rdar://problem/4381444> Remove GMail-specific work-around previously added
+
+ * khtml/ecma/kjs_html.cpp:
+ (KJS::HTMLElement::textAreaGetter): Remove GMail workaround.
+
+2005-12-14 Timothy Hatcher <timothy at apple.com>
+
Merged fix from TOT to Safari-1-3-branch
2005-12-14 Beth Dakin <bdakin at apple.com>
No revision
No revision
1.108.4.9 +1 -6 WebCore/khtml/ecma/kjs_html.cpp
Index: kjs_html.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/ecma/kjs_html.cpp,v
retrieving revision 1.108.4.8
retrieving revision 1.108.4.9
diff -u -r1.108.4.8 -r1.108.4.9
--- kjs_html.cpp 4 Dec 2005 21:58:58 -0000 1.108.4.8
+++ kjs_html.cpp 15 Dec 2005 21:37:43 -0000 1.108.4.9
@@ -1487,12 +1487,7 @@
case TextAreaReadOnly: return Boolean(textarea.readOnly());
case TextAreaRows: return Number(textarea.rows());
case TextAreaSelectionStart: return Number(textarea.selectionStart());
- case TextAreaSelectionEnd:
- // FIXME (4363497): Work-around to prevent regression caused by GMail bug (4344954).
- // For the love of all that is holy, let's remove this code as soon as Google fixes its bug.
- if (node.handle() && node.handle()->getDocument() && (node.handle()->getDocument()->domain() == "mail.google.com"))
- return Undefined();
- return Number(textarea.selectionEnd());
+ case TextAreaSelectionEnd: return Number(textarea.selectionEnd());
case TextAreaTabIndex: return Number(textarea.tabIndex());
case TextAreaType: return String(textarea.type());
case TextAreaValue: return String(textarea.value());
More information about the webkit-changes
mailing list