[Webkit-unassigned] [Bug 65452] [Qt] Fix tst_QWebPage::loadHtml5Video() API test

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 14 04:56:30 PST 2012


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





--- Comment #5 from Csaba Osztrogonac <ossy at webkit.org>  2012-11-14 04:58:17 PST ---
This test is skipped now, because WTF_USE_QT_MULTIMEDIA is false.
But WTF_USE_QT_MULTIMEDIA can be true only if contains(MOBILITY_CONFIG, multimedia). Qt Mobility was for Qt 4.8, QtMultimedia in Qt 5 integrates
QtMultimedia from Qt 4.8 and Qt Multimedia Kit from Mobility - http://qt-project.org/doc/qt-5.0/changes.html

So I think this code path is absolutely unreachable and unmaintained.

Source/WebKit/qt/examples/platformplugin/platformplugin.pro:
-------------------------------------------------------------
...
# HTML5 Media Support
# We require QtMultimedia
!contains(DEFINES, ENABLE_VIDEO=.) {
    contains(MOBILITY_CONFIG, multimedia) {
        CONFIG += mobility
        MOBILITY += multimedia
        DEFINES -= ENABLE_VIDEO=0
        DEFINES += ENABLE_VIDEO=1
        DEFINES -= WTF_USE_QT_MULTIMEDIA=0
        DEFINES += WTF_USE_QT_MULTIMEDIA=1
    }
}
...

-- 
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