Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(585)

Unified Diff: Source/core/inspector/InjectedScriptHost.idl

Issue 978233002: bindings,devtools: Shows DOM attributes' values in DevTools. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed review comments. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InjectedScriptHost.idl
diff --git a/Source/core/inspector/InjectedScriptHost.idl b/Source/core/inspector/InjectedScriptHost.idl
index 4479978ee85e93fcf9ce971c30bee2ad5d3ad8ed..e95df98f1ddb53c770b08917301a0f9c5bd107f5 100644
--- a/Source/core/inspector/InjectedScriptHost.idl
+++ b/Source/core/inspector/InjectedScriptHost.idl
@@ -39,8 +39,8 @@
[NotEnumerable, Unforgeable, Custom] void inspect(any objectId, object hints);
[NotEnumerable, Unforgeable, Custom] any inspectedObject(long num);
[NotEnumerable, Unforgeable, Custom] DOMString internalConstructorName(any obj);
+ [NotEnumerable, Unforgeable, Custom] boolean isDOMWrapper(any obj);
[NotEnumerable, Unforgeable, Custom] boolean isHTMLAllCollection(any obj);
- [NotEnumerable, Unforgeable, Custom] boolean isPopularDOMObject(any obj);
[NotEnumerable, Unforgeable, Custom] boolean isTypedArray(any obj);
[NotEnumerable, Unforgeable, Custom] DOMString subtype(any obj);
[NotEnumerable, Unforgeable, Custom] any functionDetails(Function obj);
@@ -57,6 +57,7 @@
[NotEnumerable, Unforgeable, Custom] any callFunction(Function fn, any receiver, optional any[] argv);
[NotEnumerable, Unforgeable, Custom] any suppressWarningsAndCallFunction(Function fn, any receiver, optional any[] argv);
[NotEnumerable, Unforgeable, Custom] void setNonEnumProperty(object obj, DOMString key, any value);
+ [NotEnumerable, Unforgeable, Custom] any getDOMAttributesWithObservableSideEffectOnGet();
// Only declarative scope (local, with and catch) is accepted. Returns undefined.
[NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(Function functionObject, long scopeIndex, DOMString variableName, any newValue);

Powered by Google App Engine
This is Rietveld 408576698