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

Unified Diff: Source/core/html/HTMLFormElement.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/HTMLEmbedElement.idl ('k') | Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormElement.idl
diff --git a/Source/core/html/HTMLFormElement.idl b/Source/core/html/HTMLFormElement.idl
index f12b47ab47cda5be78a16eee57f7b2628d867402..29a319e381501136e54b2d982797ccd8687bc73d 100644
--- a/Source/core/html/HTMLFormElement.idl
+++ b/Source/core/html/HTMLFormElement.idl
@@ -20,7 +20,7 @@
interface HTMLFormElement : HTMLElement {
[Reflect=accept_charset, TreatNullAs=NullString] attribute DOMString acceptCharset;
- [Reflect, TreatNullAs=NullString, URL] attribute DOMString action;
+ [Reflect, TreatNullAs=NullString, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString action;
[Reflect, TreatNullAs=NullString] attribute DOMString autocomplete;
[TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString enctype;
[TreatNullAs=NullString, CustomElementCallbacks] attribute DOMString encoding;
@@ -34,7 +34,7 @@ interface HTMLFormElement : HTMLElement {
[ImplementedAs=item] getter Node(unsigned long index);
[ImplementedAs=anonymousNamedGetter, OverrideBuiltins, NotEnumerable] getter (NodeList or Node)(DOMString name);
- [ImplementedAs=submitFromJavaScript] void submit();
+ [ImplementedAs=submitFromJavaScript, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] void submit();
[CustomElementCallbacks] void reset();
boolean checkValidity();
« no previous file with comments | « Source/core/html/HTMLEmbedElement.idl ('k') | Source/core/html/HTMLFrameElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698