Changeset 74735 in webkit


Ignore:
Timestamp:
Dec 29, 2010 1:22:19 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-12-29 Zhe Su <suzhe@chromium.org>

Reviewed by Eric Seidel.

Remove entry for editing/input/ime-composition-clearpreedit.html test.
https://bugs.webkit.org/show_bug.cgi?id=51693

  • platform/chromium/test_expectations.txt:

2010-12-29 Zhe Su <suzhe@chromium.org>

Reviewed by Eric Seidel.

Fix editing/input/ime-composition-clearpreedit.html test in chromium
by removing the line "editor->confirmComposition(text);" from
WebFrameImpl::setMarkedText() method, because that line will insert the
text into the focused node, which is apparently wrong.

https://bugs.webkit.org/show_bug.cgi?id=51693

  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::setMarkedText):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r74732 r74735  
     12010-12-29  Zhe Su  <suzhe@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Remove entry for editing/input/ime-composition-clearpreedit.html test.
     6        https://bugs.webkit.org/show_bug.cgi?id=51693
     7
     8        * platform/chromium/test_expectations.txt:
     9
    1102010-12-28  Daniel Bates  <dbates@rim.com>
    211
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r74718 r74735  
    32833283BUGCR67935 WIN : fast/canvas/webgl/gl-pixelstorei.html = CRASH
    32843284
    3285 BUGCR67960 : editing/input/ime-composition-clearpreedit.html = TEXT
    3286 
    32873285// WebKit roll 74667:74679
    32883286BUGCR68067 LINUX DEBUG : fast/canvas/webgl/tex-image-with-format-and-type.html = TEXT
  • trunk/WebKit/chromium/ChangeLog

    r74720 r74735  
     12010-12-29  Zhe Su  <suzhe@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix editing/input/ime-composition-clearpreedit.html test in chromium
     6        by removing the line "editor->confirmComposition(text);" from
     7        WebFrameImpl::setMarkedText() method, because that line will insert the
     8        text into the focused node, which is apparently wrong.
     9
     10        https://bugs.webkit.org/show_bug.cgi?id=51693
     11
     12        * src/WebFrameImpl.cpp:
     13        (WebKit::WebFrameImpl::setMarkedText):
     14
    1152010-12-23  Zhenyao Mo  <zmo@google.com>
    216
  • trunk/WebKit/chromium/src/WebFrameImpl.cpp

    r74566 r74735  
    10821082    Editor* editor = frame()->editor();
    10831083
    1084     editor->confirmComposition(text);
    1085 
    10861084    Vector<CompositionUnderline> decorations;
    10871085    editor->setComposition(text, decorations, location, length);
Note: See TracChangeset for help on using the changeset viewer.