[Webkit-unassigned] [Bug 30700] fast/media/mq-transform-02.html failed on Leopard Commit Bot

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 23 11:19:59 PDT 2009


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


Eric Seidel <eric at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|fast/media/mq-transform-02. |fast/media/mq-transform-02.
                   |html failed on Leopard Bot  |html failed on Leopard
                   |                            |Commit Bot




--- Comment #2 from Eric Seidel <eric at webkit.org>  2009-10-23 11:19:59 PDT ---
commit bot.  Sorry if that wasn't clear.

To resolve this I think I just need to update the version check in
DumpRenderTree.

Before I do that, I need to know if a fix for rdar://problem/7189153 has
already been shipped in QuickTime.

This started failing when I installed QuickTime 7.6.4 on the commit-bot.

#if defined(BUILDING_ON_LEOPARD)
    // Disable hardware composititing to avoid timeouts and crashes from buggy
CoreVideo teardown code.
    // https://bugs.webkit.org/show_bug.cgi?id=28845 and rdar://problem/7228836
    SInt32 qtVersion;
    OSErr err = Gestalt(gestaltQuickTimeVersion, &qtVersion);
    assert(err == noErr);
    // Bug 7228836 exists in at least 7.6.3 and 7.6.4, hopefully it will be
fixed in 7.6.5.
    // FIXME: Once we know the exact versions of QuickTime affected, we can
update this check.
    if (qtVersion <= 0x07640000)
        [preferences setAcceleratedCompositingEnabled:NO];
    else
#endif
        [preferences setAcceleratedCompositingEnabled:YES];

Is the current check in DumpRenderTree.mm

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list