You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we intercept mutations to an element's inline style by inserting an accessor style field directly on the element reference, so changes via element.style.x and $(element).css(s) are intercepted and logged.
To get a complete picture of how scripts may be mutating an inline style value we would have to intercept:
element.setAttribute
element.setAttributeNode
On the attribute node we would have to intercept nodeValue, textContent and value
Right now we intercept mutations to an element's inline style by inserting an accessor
style
field directly on the element reference, so changes via element.style.x and $(element).css(s) are intercepted and logged.To get a complete picture of how scripts may be mutating an inline style value we would have to intercept:
element.setAttribute
element.setAttributeNode
element.removeAttribute
element.removeAttributeNode
element.style.setProperty
element.style.removeProperty
for example:
The text was updated successfully, but these errors were encountered: