[Webkit-unassigned] [Bug 29714] apply a style change to scope variables as they change from step to step

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 14 23:45:32 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=29714


Sandip Chitale <sandipchitale at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sandipchitale at gmail.com




--- Comment #1 from Sandip Chitale <sandipchitale at gmail.com>  2013-02-14 23:47:49 PST ---
I would like this feature also.

I was trying to implement a patch for it, but ran into an issue of stability of the runtime.RemoteObject.objectId. I appears that this id is not the same for the same object (say window object) between successive stopping of the debugee. This prevents the frontend based implementation of diff computation. May be the backend should simply set and additional property of runtime.RemoteObject, say state to one of added or changed which can be used by the frontend...more precisely near this code in DevTools.js:

:
WebInspector.ObjectPropertyTreeElement.prototype = {
:
:
:
update: function()
{
:
:
this.nameElement.textContent = this.property.name;
if ('added' == this.property.value.state) {
    // add a class to the to row to indicate new property
} else if ('changed' == this.property.value.changed) {
    // add a class to the to row to indicate change property
}
:
:

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list