[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_html.cpp

Timothy thatcher at opensource.apple.com
Thu Dec 15 13:36:40 PST 2005


thatcher    05/12/15 13:36:39

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               khtml/ecma Tag: Safari-2-0-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.1.2.107 +7 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.1.2.106
  retrieving revision 1.1.2.107
  diff -u -r1.1.2.106 -r1.1.2.107
  --- ChangeLog	15 Dec 2005 19:07:22 -0000	1.1.2.106
  +++ ChangeLog	15 Dec 2005 21:36:23 -0000	1.1.2.107
  @@ -1,3 +1,10 @@
  +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.
  +
   === WebCore-417.13 ===
   
   2005-12-14  Adele Peterson  <adele at apple.com>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.108.6.15 +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.6.14
  retrieving revision 1.108.6.15
  diff -u -r1.108.6.14 -r1.108.6.15
  --- kjs_html.cpp	3 Dec 2005 00:54:21 -0000	1.108.6.14
  +++ kjs_html.cpp	15 Dec 2005 21:36:34 -0000	1.108.6.15
  @@ -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