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

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElement.idl

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge Created 4 years 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: third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
index 0a43b108ad1fd5e6c85bb2e2e9a51784fe94be08..eaaac8869e86538bc6f4503b00601d0b87d1ef72 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
@@ -22,11 +22,11 @@
interface HTMLIFrameElement : HTMLElement {
[CEReactions, Reflect, URL] attribute DOMString src;
- [CEReactions, Reflect] attribute DOMString srcdoc;
- [CEReactions, Reflect] attribute DOMString name;
+ [Measure, CEReactions, Reflect] attribute DOMString srcdoc;
+ [Measure, CEReactions, Reflect] attribute DOMString name;
[CEReactions, PutForwards=value] readonly attribute DOMTokenList sandbox;
// Note: The seamless attribute was once supported, but was removed.
- [CEReactions, Reflect] attribute boolean allowFullscreen;
+ [Measure, CEReactions, Reflect] attribute boolean allowFullscreen;
[CEReactions, Reflect] attribute DOMString width;
[CEReactions, Reflect] attribute DOMString height;
[CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
@@ -40,11 +40,11 @@ interface HTMLIFrameElement : HTMLElement {
// obsolete members
// https://html.spec.whatwg.org/#HTMLIFrameElement-partial
- [CEReactions, Reflect] attribute DOMString align;
- [CEReactions, Reflect] attribute DOMString scrolling;
+ [Measure, CEReactions, Reflect] attribute DOMString align;
+ [Measure, CEReactions, Reflect] attribute DOMString scrolling;
[CEReactions, Reflect] attribute DOMString frameBorder;
- [CEReactions, Reflect, URL] attribute DOMString longDesc;
+ [Measure, CEReactions, Reflect, URL] attribute DOMString longDesc;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
- [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
+ [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
+ [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
};

Powered by Google App Engine
This is Rietveld 408576698