| Summary: | [GTK] Implement is_selected method on WebKitHitTestResult | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Marcos Chavarría Teijeiro (irc: chavaone) <chavarria1991> | ||||||||||||
| Component: | WebKitGTK | Assignee: | Nobody <webkit-unassigned> | ||||||||||||
| Status: | RESOLVED FIXED | ||||||||||||||
| Severity: | Normal | CC: | andersca, cgarcia, chavarria1991, clopez, commit-queue | ||||||||||||
| Priority: | P2 | ||||||||||||||
| Version: | 528+ (Nightly build) | ||||||||||||||
| Hardware: | Unspecified | ||||||||||||||
| OS: | Unspecified | ||||||||||||||
| Attachments: |
|
||||||||||||||
|
Description
Marcos Chavarría Teijeiro (irc: chavaone)
2014-09-25 01:45:13 PDT
Created attachment 238707 [details]
Patch
Created attachment 238843 [details]
Patch
Change variable names to make them similar to WK1 API.
Comment on attachment 238843 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=238843&action=review Thanks for the patch, it looks good to me in general, but new API patches should include a unit test (see Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestUIClient.cpp and TestContextMenu.cpp). Also this patch changes cross-platform code, so it requires the approval of a WebKit2 owner. > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.cpp:366 > + */ Since: 2.8 > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.h:51 > + * @WEBKIT_HIT_TEST_RESULT_CONTEXT_SELECTION: a selected element. Since: 2.8. > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.h:100 > +webkit_hit_test_result_context_is_selection (WebKitHitTestResult *hit_test_result); I think there's an extra space between function name and parentheses. Created attachment 239089 [details]
Patch
Add tests and fix some minor details.
Comment on attachment 239089 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=239089&action=review Looks good to me, apart from the minor issues I mentioned. > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.cpp:367 > + * Since 2.8. Since: 2.8 > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.h:55 > + * Since 2.8. This here means the enum was introduced in 2.8, but it's only the value. You should add the Since tag after the flag. * @WEBKIT_HIT_TEST_RESULT_CONTEXT_SELECTION: a selected element. Since 2.8 > Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestContextMenu.cpp:408 > + // Context menu for selection. > + test->m_expectedMenuType = ContextMenuDefaultTest::Selection; > + test->showContextMenuAtPositionAndWaitUntilFinished(2, 115); I guess this should go first because otherwise any other click would remove the selection, right? I would add a comment explaining why this should always be the first check. Created attachment 239093 [details]
Patch
Explain test and fix since related issues.
Comment on attachment 239093 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=239093&action=review > Source/WebKit2/UIProcess/API/gtk/WebKitHitTestResult.cpp:367 > + * Since 2.8 Since: 2.8 This requires the ':', the regexp used by gtk-doc to parse this is: } elsif (m%^\s*since:%i) { Created attachment 239097 [details]
Patch
Add colon to Since tag.
Comment on attachment 239097 [details]
Patch
r+ given cgarcia's LGTM+adjustments and a review of the WebKit2 bits.
Seems that commit-queue forgot to update the flags or close the bug. This was committed on r175160 <http://trac.webkit.org/r175160> Closing |