Changeset 128854 in webkit


Ignore:
Timestamp:
Sep 17, 2012 11:56:36 PM (12 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html failing after r128645
https://bugs.webkit.org/show_bug.cgi?id=96899

Reviewed by Martin Robinson.

Tools:

When overriding the 'WebKitDisplayImageKey' preference, use the
'auto-load-images' property of WebKitWebSettings as the property which
should be updated with the corresponding preference value.

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(resetDefaultsToConsistentValues):

  • DumpRenderTree/gtk/TestRunnerGtk.cpp:

(TestRunner::overridePreference):

LayoutTests:

Remove failure expectation for the test in title.

  • platform/gtk/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r128847 r128854  
     12012-09-17  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        [GTK] fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html failing after r128645
     4        https://bugs.webkit.org/show_bug.cgi?id=96899
     5
     6        Reviewed by Martin Robinson.
     7
     8        Remove failure expectation for the test in title.
     9
     10        * platform/gtk/TestExpectations:
     11
    1122012-09-17  Shinya Kawanaka  <shinyak@chromium.org>
    213
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r128730 r128854  
    13591359BUGWK50740 DEBUG : editing/spelling/spellcheck-queue.html = TEXT
    13601360
    1361 BUGWK96899 : fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html = TEXT
    1362 
    13631361BUGWK96900 : fast/text/stale-TextLayout-from-first-line.html = IMAGE
    13641362
  • trunk/Tools/ChangeLog

    r128852 r128854  
     12012-09-17  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        [GTK] fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html failing after r128645
     4        https://bugs.webkit.org/show_bug.cgi?id=96899
     5
     6        Reviewed by Martin Robinson.
     7
     8        When overriding the 'WebKitDisplayImageKey' preference, use the
     9        'auto-load-images' property of WebKitWebSettings as the property which
     10        should be updated with the corresponding preference value.
     11
     12        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     13        (resetDefaultsToConsistentValues):
     14        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
     15        (TestRunner::overridePreference):
     16
    1172012-09-17  Pratik Solanki  <psolanki@apple.com>
    218
  • trunk/Tools/DumpRenderTree/gtk/TestRunnerGtk.cpp

    r127577 r128854  
    777777    else if (g_str_equal(originalName.get(), "WebKitWebAudioEnabled"))
    778778        propertyName = "enable-webaudio";
     779    else if (g_str_equal(originalName.get(), "WebKitDisplayImagesKey"))
     780        propertyName = "auto-load-images";
    779781    else if (g_str_equal(originalName.get(), "WebKitTabToLinksPreferenceKey")) {
    780782        DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain(booleanFromValue(valueAsString.get()));
Note: See TracChangeset for help on using the changeset viewer.