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

Unified Diff: Source/core/html/HTMLImageElement.idl

Issue 55313003: Logging accesses to URL-properties of DOM elements, e.g. src. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Logging only setters in isolated worlds. Created 7 years, 1 month 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
« no previous file with comments | « Source/core/html/HTMLIFrameElement.idl ('k') | Source/core/html/HTMLInputElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLImageElement.idl
diff --git a/Source/core/html/HTMLImageElement.idl b/Source/core/html/HTMLImageElement.idl
index 181276135c9fe2f8e685648abc39e66f9a266669..04947696cb6f50a072a475e5aae66b73b1530d97 100644
--- a/Source/core/html/HTMLImageElement.idl
+++ b/Source/core/html/HTMLImageElement.idl
@@ -31,8 +31,8 @@
attribute long height;
[Reflect] attribute long hspace;
[Reflect] attribute boolean isMap;
- [Reflect, TreatNullAs=NullString, URL] attribute DOMString longDesc;
- [Reflect, TreatNullAs=NullString, URL] attribute DOMString src;
+ [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString longDesc;
+ [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString src;
[Reflect, TreatNullAs=NullString, RuntimeEnabled=Srcset] attribute DOMString srcset;
[Reflect, TreatNullAs=NullString] attribute DOMString useMap;
[Reflect] attribute long vspace;
@@ -40,7 +40,7 @@
// Extensions
readonly attribute boolean complete;
- [Reflect, TreatNullAs=NullString,URL] attribute DOMString lowsrc;
+ [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString lowsrc;
readonly attribute long naturalHeight;
readonly attribute long naturalWidth;
readonly attribute long x;
« no previous file with comments | « Source/core/html/HTMLIFrameElement.idl ('k') | Source/core/html/HTMLInputElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698