RESOLVED FIXED 109096
Web Inspector: Add settings checkbox for composited layer borders
https://bugs.webkit.org/show_bug.cgi?id=109096
Summary Web Inspector: Add settings checkbox for composited layer borders
egraether
Reported 2013-02-06 14:48:20 PST
Web Inspector: Add settings checkbox for composited border layers
Attachments
Patch (18.55 KB, patch)
2013-02-06 14:56 PST, egraether
no flags
egraether
Comment 1 2013-02-06 14:56:27 PST
egraether
Comment 2 2013-02-06 14:59:14 PST
This should be the last checkbox for now. Pavel, can you please have a look?
WebKit Review Bot
Comment 3 2013-02-06 14:59:45 PST
Please wait for approval from abarth@webkit.org, dglazkov@chromium.org, fishd@chromium.org, jamesr@chromium.org or tkent@chromium.org before submitting, as this patch contains changes to the Chromium public API. See also https://trac.webkit.org/wiki/ChromiumWebKitAPI.
Kent Tamura
Comment 4 2013-02-06 22:50:57 PST
Comment on attachment 186927 [details] Patch LGTM for WebKit API change
WebKit Review Bot
Comment 5 2013-02-07 09:56:53 PST
Comment on attachment 186927 [details] Patch Clearing flags on attachment: 186927 Committed r142144: <http://trac.webkit.org/changeset/142144>
WebKit Review Bot
Comment 6 2013-02-07 09:56:57 PST
All reviewed patches have been landed. Closing bug.
Timothy Hatcher
Comment 7 2013-02-07 11:24:32 PST
This duplicated API that was already available in the protocol. { "name": "getCompositingBordersVisible", "description": "Indicates the visibility of compositing borders.", "returns": [ { "name": "result", "type": "boolean", "description": "If true, compositing borders are visible." } ], "hidden": true }, { "name": "setCompositingBordersVisible", "description": "Controls the visibility of compositing borders.", "parameters": [ { "name": "visible", "type": "boolean", "description": "True for showing compositing borders." } ], "hidden": true }, I suggest you remove the one you added. And if you need the "canShow…" call, then add it to make these names.
egraether
Comment 8 2013-02-07 15:02:06 PST
(In reply to comment #7) > This duplicated API that was already available in the protocol. > > { > "name": "getCompositingBordersVisible", > "description": "Indicates the visibility of compositing borders.", > "returns": [ > { "name": "result", "type": "boolean", "description": "If true, compositing borders are visible." } > ], > "hidden": true > }, > { > "name": "setCompositingBordersVisible", > "description": "Controls the visibility of compositing borders.", > "parameters": [ > { "name": "visible", "type": "boolean", "description": "True for showing compositing borders." } > ], > "hidden": true > }, > > I suggest you remove the one you added. And if you need the "canShow…" call, then add it to make these names. Oh, seems like I overlooked that. I will follow your suggestion.
Note You need to log in before you can comment on or make changes to this bug.