Changeset 70528 in webkit


Ignore:
Timestamp:
Oct 26, 2010 9:15:10 AM (14 years ago)
Author:
Adam Roben
Message:

Skip more tests that depend on accelerated compositing when accelerated compositing is disabled

Fixes <http://webkit.org/b/48329> Some tests fail when accelerated
compositing is disabled

Reviewed by John Sullivan.

  • Scripts/old-run-webkit-tests: Added more tests to skip when

accelerated compositing is disable. The tests all have output that
changes depending on whether accelerated compositing is enabled.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70502 r70528  
     12010-10-26  Adam Roben  <aroben@apple.com>
     2
     3        Skip more tests that depend on accelerated compositing when accelerated
     4        compositing is disabled
     5
     6        Fixes <http://webkit.org/b/48329> Some tests fail when accelerated
     7        compositing is disabled
     8
     9        Reviewed by John Sullivan.
     10
     11        * Scripts/old-run-webkit-tests: Added more tests to skip when
     12        accelerated compositing is disable. The tests all have output that
     13        changes depending on whether accelerated compositing is enabled.
     14
    1152010-10-25  Eric Seidel  <eric@webkit.org>
    216
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r70188 r70528  
    528528if (!$hasAcceleratedCompositing) {
    529529    $ignoredDirectories{'compositing'} = 1;
     530
     531    # These tests use the -webkit-transform-3d media query, which depends on
     532    # accelerated compositing support.
     533    $ignoredFiles{'fast/media/mq-transform-02.html'} = 1;
     534    $ignoredFiles{'fast/media/mq-transform-03.html'} = 1;
     535
     536    # This test has slightly different floating-point rounding when accelerated
     537    # compositing is enabled.
     538    $ignoredFiles{'svg/custom/use-on-symbol-inside-pattern.svg'} = 1;
     539
     540    if (isAppleWebKit()) {
     541        # In Apple's ports, the default controls for <video> contain a "full
     542        # screen" button only if accelerated compositing is enabled.
     543        $ignoredFiles{'media/controls-after-reload.html'} = 1;
     544        $ignoredFiles{'media/controls-drag-timebar.html'} = 1;
     545        $ignoredFiles{'media/controls-strict.html'} = 1;
     546        $ignoredFiles{'media/controls-styling.html'} = 1;
     547        $ignoredFiles{'media/video-controls-rendering.html'} = 1;
     548        $ignoredFiles{'media/video-display-toggle.html'} = 1;
     549        $ignoredFiles{'media/video-no-audio.html'} = 1;
     550    }
    530551}
    531552
Note: See TracChangeset for help on using the changeset viewer.