[Webkit-unassigned] [Bug 34802] New: QWebSettings::setUserStyleSheetUrl is not working with a data URL (Base64)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 10 08:14:49 PST 2010


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

           Summary: QWebSettings::setUserStyleSheetUrl is not working with
                    a data URL (Base64)
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: renato.chencarek at openbossa.org
                CC: diego.gonzalez at openbossa.org, kenneth at webkit.org


This simple test case is not working anymore.

#include <QApplication>
#include <QWebView>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QWebView view;

    //p { background-color: red };
    QUrl
css("data:text/css;charset=utf-8;base64,cCB7IGJhY2tncm91bmQtY29sb3I6IHJlZCB9Ow==;");

    view.page()->settings()->setUserStyleSheetUrl(css);
    view.setHtml("<html><body><p>RED TEST</p></body></html>");

    view.show();
    app.exec();

    return 0;
}

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