Changeset 57876 in webkit


Ignore:
Timestamp:
Apr 20, 2010 12:15:03 AM (14 years ago)
Author:
tkent@chromium.org
Message:

2010-04-20 Kent Tamura <tkent@chromium.org>

Reviewed by Shinichiro Hamaji.

[DRT/Chromium] Fix some unexpected results of editing
https://bugs.webkit.org/show_bug.cgi?id=37843

This change fixes about 70 unexpected results.
The original test_webview_delegate.cc doesn't have this bug.
The bug was introduced when I ported it to WebKit tree.

  • DumpRenderTree/chromium/WebViewHost.cpp: (printRangeDescription): Replace the latter startContainer() with endContainer().
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57872 r57876  
     12010-04-20  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Shinichiro Hamaji.
     4
     5        [DRT/Chromium] Fix some unexpected results of editing
     6        https://bugs.webkit.org/show_bug.cgi?id=37843
     7
     8        This change fixes about 70 unexpected results.
     9        The original test_webview_delegate.cc doesn't have this bug.
     10        The bug was introduced when I ported it to WebKit tree.
     11
     12        * DumpRenderTree/chromium/WebViewHost.cpp:
     13        (printRangeDescription): Replace the latter startContainer() with endContainer().
     14
    1152010-04-19  Dirk Pranke  <dpranke@chromium.org>
    216
  • trunk/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp

    r56963 r57876  
    221221    printNodeDescription(startNode, exception);
    222222    printf(" to %d of ", range.endOffset());
    223     WebNode endNode = range.startContainer(exception);
     223    WebNode endNode = range.endContainer(exception);
    224224    printNodeDescription(endNode, exception);
    225225}
Note: See TracChangeset for help on using the changeset viewer.