It is not possible to set custom user agent strings in MiniBrowser.
Created attachment 74045 [details] proposed patch
Comment on attachment 74045 [details] proposed patch View in context: https://bugs.webkit.org/attachment.cgi?id=74045&action=review > WebKitTools/MiniBrowser/qt/BrowserWindow.cpp:151 > + QDialog* dialog = new QDialog(this); Put this on the stack instead, no need for the explicit delete later. > WebKitTools/MiniBrowser/qt/MiniBrowser.qrc:3 > + <file>useragentlist.txt</file> Could we share this file with QtTestBrowser somehow? Seems unnecessary to have two copies of it.
Created attachment 74118 [details] proposed patch v2 Addressed Andreas' suggestions.
Comment on attachment 74118 [details] proposed patch v2 View in context: https://bugs.webkit.org/attachment.cgi?id=74118&action=review LGTM, just one thing: > WebKitTools/MiniBrowser/qt/BrowserWindow.cpp:141 > + ASSERT(!m_userAgentList.isEmpty()); Use Q_ASSERT instead and remove the WTF include + JavaScriptCore path in .pro
Committed r72220: <http://trac.webkit.org/changeset/72220>
Comment on attachment 74118 [details] proposed patch v2 Clearing flags.
I think this broke qt release build.
(In reply to comment #7) > I think this broke qt release build. Build fixed with r72223 and r72224.