Changeset 59861 in webkit


Ignore:
Timestamp:
May 20, 2010 1:20:57 PM (14 years ago)
Author:
Martin Robinson
Message:

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Eric Seidel.

editingBehavior settings needs to be set back to a reasonable default between tests
https://bugs.webkit.org/show_bug.cgi?id=39433

For now, hard code the default setting during reset, so that the serialized
version of the setting stays in sync with expectations.

  • DumpRenderTree/mac/DumpRenderTree.mm: (resetDefaultsToConsistentValues): Reset editing behavior to the appropriate platform default.
  • DumpRenderTree/win/DumpRenderTree.cpp: (resetDefaultsToConsistentValues): Ditto.
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r59858 r59861  
     12010-05-20  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        editingBehavior settings needs to be set back to a reasonable default between tests
     6        https://bugs.webkit.org/show_bug.cgi?id=39433
     7
     8        For now, hard code the default setting during reset, so that the serialized
     9        version of the setting stays in sync with expectations.
     10
     11        * DumpRenderTree/mac/DumpRenderTree.mm:
     12        (resetDefaultsToConsistentValues): Reset editing behavior to the appropriate platform default.
     13        * DumpRenderTree/win/DumpRenderTree.cpp:
     14        (resetDefaultsToConsistentValues): Ditto.
     15
    1162010-05-20  Brent Fulgham  <bfulgham@webkit.org>
    217
  • trunk/WebKitTools/DumpRenderTree/mac/DumpRenderTree.mm

    r59687 r59861  
    442442    [preferences setLoadsImagesAutomatically:YES];
    443443    [preferences setFrameFlatteningEnabled:NO];
     444    [preferences setEditingBehavior:WebKitEditingMacBehavior];
    444445    if (persistentUserStyleSheetLocation) {
    445446        [preferences setUserStyleSheetLocation:[NSURL URLWithString:(NSString *)(persistentUserStyleSheetLocation.get())]];
  • trunk/WebKitTools/DumpRenderTree/win/DumpRenderTree.cpp

    r59371 r59861  
    788788    preferences->setShouldPrintBackgrounds(TRUE);
    789789    preferences->setLoadsImagesAutomatically(TRUE);
     790    preferences->setEditingBehavior(WebKitEditingWinBehavior);
    790791
    791792    if (persistentUserStyleSheetLocation) {
Note: See TracChangeset for help on using the changeset viewer.