[webkit-changes] cvs commit: WebCore/kwq KWQTextArea.mm

Adele adele at opensource.apple.com
Tue Jul 12 13:26:07 PDT 2005


adele       05/07/12 13:26:07

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               kwq      Tag: Safari-2-0-branch KWQTextArea.mm
  Log:
          Merged fix from TOT to Safari-2-0-branch
          <rdar://problem/4164952>
  
      2005-05-30  Darin Adler  <darin at apple.com>
  
          Reviewed by John.
          No test case added because our layout test system doesn't allow us to do inline input.
  
          - fixed <rdar://problem/4094066> REGRESSION (1.2.5-1.3): unconfirmed inline input is ignored in <textarea>, lost when form is submitted
  
          * kwq/KWQTextArea.mm: (-[KWQTextArea _createTextView]): Call setWantsNotificationForMarkedText:YES.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.4104.2.52 +14 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4104.2.51
  retrieving revision 1.4104.2.52
  diff -u -r1.4104.2.51 -r1.4104.2.52
  --- ChangeLog	12 Jul 2005 19:09:41 -0000	1.4104.2.51
  +++ ChangeLog	12 Jul 2005 20:25:59 -0000	1.4104.2.52
  @@ -1,3 +1,17 @@
  +2005-07-12  Adele Peterson  <adele at apple.com>
  +
  +        Merged fix from TOT to Safari-2-0-branch
  +        <rdar://problem/4164952>
  +
  +    2005-05-30  Darin Adler  <darin at apple.com>
  +
  +        Reviewed by John.
  +        No test case added because our layout test system doesn't allow us to do inline input.
  +
  +        - fixed <rdar://problem/4094066> REGRESSION (1.2.5-1.3): unconfirmed inline input is ignored in <textarea>, lost when form is submitted
  +
  +        * kwq/KWQTextArea.mm: (-[KWQTextArea _createTextView]): Call setWantsNotificationForMarkedText:YES.
  +
   2005-07-12  Vicki Murley  <vicki at apple.com>
   
   	- merge this fix from HEAD
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.72.8.1  +5 -1      WebCore/kwq/KWQTextArea.mm
  
  Index: KWQTextArea.mm
  ===================================================================
  RCS file: /cvs/root/WebCore/kwq/KWQTextArea.mm,v
  retrieving revision 1.72
  retrieving revision 1.72.8.1
  diff -u -r1.72 -r1.72.8.1
  --- KWQTextArea.mm	3 Mar 2005 00:58:35 -0000	1.72
  +++ KWQTextArea.mm	12 Jul 2005 20:26:07 -0000	1.72.8.1
  @@ -35,6 +35,10 @@
   using DOM::NodeImpl;
   using khtml::RenderWidget;
   
  + at interface NSTextView (WebCoreKnowsCertainAppKitSecrets)
  +- (void)setWantsNotificationForMarkedText:(BOOL)wantsNotification;
  + at end
  +
   /*
       This widget is used to implement the <TEXTAREA> element.
       
  @@ -50,7 +54,6 @@
       HARD|PHYSICAL - Text is wrapped, and text is broken into separate lines.
   */
   
  -
   @interface NSView (KWQTextArea)
   - (void)_KWQ_setKeyboardFocusRingNeedsDisplay;
   @end
  @@ -104,6 +107,7 @@
       [textView setRichText:NO];
       [textView setAllowsUndo:YES];
       [textView setDelegate:self];
  +    [textView setWantsNotificationForMarkedText:YES];
   
       [self setDocumentView:textView];
   
  
  
  



More information about the webkit-changes mailing list