<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - AX: new lines in content editable elements don't notify accessibility"
   href="https://bugs.webkit.org/show_bug.cgi?id=153361#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - AX: new lines in content editable elements don't notify accessibility"
   href="https://bugs.webkit.org/show_bug.cgi?id=153361">bug 153361</a>
              from <span class="vcard"><a class="email" href="mailto:cfleizach&#64;apple.com" title="chris fleizach &lt;cfleizach&#64;apple.com&gt;"> <span class="fn">chris fleizach</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=272234&amp;action=diff" name="attach_272234" title="Patch">attachment 272234</a> <a href="attachment.cgi?id=272234&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=272234&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=272234&amp;action=review</a>

<span class="quote">&gt; Source/WebCore/accessibility/AXObjectCache.cpp:121
&gt; +    if (AXObjectCache::accessibilityEnabled() &amp;&amp; selection.isRange())</span >

if ax is not enabled it seems like we should not do anything

<span class="quote">&gt; Source/WebCore/accessibility/AXObjectCache.cpp:124
&gt; +        m_replacedText = String();</span >

this seems unnecessary. i think this is what m_replacedText will be initialized to regardless

<span class="quote">&gt; Source/WebCore/editing/CompositeEditCommand.cpp:637
&gt; +    default:</span >

feel like we should ASSERT_NOT_REACHED for default: and expect someone will pass in Cut or Delete

<span class="quote">&gt; Source/WebCore/editing/DictationCommand.cpp:113
&gt; +    notifyAccessibilityForTextChange(AXTextEditTypeDictation, m_textToInsert);</span >

check Internals.cpp for whether dictation has some stubs to direct data through

<span class="quote">&gt; Source/WebCore/editing/Editor.cpp:543
&gt; +    applyCommand(cmd);</span >

this change seems unneeded

<span class="quote">&gt; Source/WebCore/editing/Editor.cpp:557
&gt; +    if (AXObjectCache::accessibilityEnabled() &amp;&amp; editingAction == EditActionPaste)</span >

seems like we should cleanup memory when not being used

<span class="quote">&gt; Source/WebCore/editing/Editor.cpp:1283
&gt; +    cache-&gt;postTextStateChangeNotification(node, AXTextEditTypeCut, text, start);</span >

do we need to check for node == nil here? can postTextState changes handle the nil node case instead?

<span class="quote">&gt; Source/WebCore/editing/InsertTextCommand.cpp:143
&gt; +        // FIXME: Need to capture the deleted selection and post replacement notification after insertion</span >

any fixme: should probably have a webkit bug tied to it

<span class="quote">&gt; LayoutTests/accessibility/mac/value-change-userinfo.html:195
&gt; +//             execExtendSelectionRightByCharacterCommand();</span >

should this be deleted?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>