RESOLVED FIXED 177042
Web Inspector: RemoteObject.resolveNode should return a Promise
https://bugs.webkit.org/show_bug.cgi?id=177042
Summary Web Inspector: RemoteObject.resolveNode should return a Promise
Matt Baker
Reported 2017-09-16 18:11:01 PDT
.
Attachments
Patch (20.93 KB, patch)
2017-09-16 18:33 PDT, Matt Baker
no flags
Patch (20.94 KB, patch)
2017-09-18 11:37 PDT, Matt Baker
no flags
Patch for landing (20.98 KB, patch)
2017-09-18 15:42 PDT, Matt Baker
no flags
Matt Baker
Comment 1 2017-09-16 18:33:17 PDT
Joseph Pecoraro
Comment 2 2017-09-18 11:25:53 PDT
Comment on attachment 321020 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=321020&action=review > Source/WebInspectorUI/UserInterface/Protocol/RemoteObject.js:138 > - static resolveNode(node, objectGroup, callback) > + static resolveNode(node, objectGroup) > { > - DOMAgent.resolveNode(node.id, objectGroup, function(error, object) { > - if (!callback) > - return; > + return new Promise((resolve, reject) => { > + DOMAgent.resolveNode(node.id, objectGroup, function(error, object) { > + if (error || !object) { > + reject(error || "Could not resolve DOM node."); > + return; > + } > > - if (error || !object) > - callback(null); > - else > - callback(WI.RemoteObject.fromPayload(object, WI.mainTarget)); > + resolve(WI.RemoteObject.fromPayload(object, WI.mainTarget)); > + }); I'm a little confused by this. DOMAgent.resolveNode can produce a promise, lets use that promise (which handles errors) instead of creating our own: return DOMAgent.resolveNode(node.id, objectGroup) .then(({object}) => WI.RemoteObject.fromPayload(object, WI.mainTarget)); > Source/WebInspectorUI/UserInterface/Views/BoxModelDetailsSectionRow.js:408 > + function toggleInlineStyleProperty(property, value) { Name: inspectedPage_node_toggleInlineStyleProperty > Source/WebInspectorUI/UserInterface/Views/DOMTreeElement.js:313 > + function dimensions() { This should be named: inspectedPage_node_dimensions Since we are running this code on the `inspectedPage` and the this value is a `node`. > Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.js:508 > + function injectStyleAndToggleClass() { Same thing here: inspectedPage_node_injectStyleAndToggleClass
Matt Baker
Comment 3 2017-09-18 11:37:09 PDT
Joseph Pecoraro
Comment 4 2017-09-18 14:25:36 PDT
Comment on attachment 321117 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=321117&action=review rs=me > Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.js:508 > + function injectStyleAndToggleClass() { Style: Name of this should have "inspectedPage_node_" prefix.
Matt Baker
Comment 5 2017-09-18 15:42:30 PDT
Created attachment 321141 [details] Patch for landing
WebKit Commit Bot
Comment 6 2017-09-18 16:14:51 PDT
Comment on attachment 321141 [details] Patch for landing Clearing flags on attachment: 321141 Committed r222188: <http://trac.webkit.org/changeset/222188>
WebKit Commit Bot
Comment 7 2017-09-18 16:14:53 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 8 2017-09-27 12:25:06 PDT
Note You need to log in before you can comment on or make changes to this bug.