RESOLVED FIXED 42516
Add dumping of statusbar text to WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=42516
Summary Add dumping of statusbar text to WebKitTestRunner
Anders Carlsson
Reported 2010-07-18 09:40:16 PDT
Add dumping of statusbar text to WebKitTestRunner
Attachments
Patch (11.97 KB, patch)
2010-07-18 09:44 PDT, Anders Carlsson
mitz: review+
Anders Carlsson
Comment 1 2010-07-18 09:44:44 PDT
WebKit Review Bot
Comment 2 2010-07-18 09:45:30 PDT
Attachment 61902 [details] did not pass style-queue: Failed to run "['WebKitTools/Scripts/check-webkit-style']" exit_code: 1 WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.h:70: Extra space between WKBundlePageSetStatusbarTextCallback and setStatusbarText [whitespace/declaration] [3] WebKitTools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:64: _setStatusbarText is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] WebKitTools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:202: InjectedBundlePage::_setStatusbarText is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Total errors found: 3 in 10 files If any of these errors are false positives, please file a bug against check-webkit-style.
mitz
Comment 3 2010-07-18 09:51:47 PDT
Comment on attachment 61902 [details] Patch > typedef void (*WKBundlePageAddMessageToConsoleCallback)(WKBundlePageRef page, WKStringRef message, uint32_t lineNumber, const void *clientInfo); Star on the wrong side of the space here. > +typedef void (*WKBundlePageSetStatusbarTextCallback)(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo); and here > const void * clientInfo; and here > +void InjectedBundlePage::_setStatusbarText(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo) and here > static void _addMessageToConsole(WKBundlePageRef page, WKStringRef message, uint32_t lineNumber, const void *clientInfo); and here > + static void _setStatusbarText(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo); and here r=me if you fix the style issues.
mitz
Comment 4 2010-07-18 09:59:52 PDT
(In reply to comment #3) > (From update of attachment 61902 [details]) > > typedef void (*WKBundlePageAddMessageToConsoleCallback)(WKBundlePageRef page, WKStringRef message, uint32_t lineNumber, const void *clientInfo); > > Star on the wrong side of the space here. I was wrong. CF-style is that the space comes before the star. r=me then.
Anders Carlsson
Comment 5 2010-07-18 10:03:17 PDT
Note You need to log in before you can comment on or make changes to this bug.