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

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

Issue 2043503002: Add [CEReactions] IDL attributes for Custom Elements V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yukishiino review Created 4 years, 6 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: third_party/WebKit/Source/core/html/HTMLFrameElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
index 54e290141f066eb6cd7ca105b96b1a9e945cdd17..a20103f348da54177fd674011091ea46e1f633b8 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLFrameElement.idl
@@ -21,15 +21,15 @@
// https://html.spec.whatwg.org/#htmlframeelement
interface HTMLFrameElement : HTMLElement {
- [Reflect] attribute DOMString name;
- [Reflect] attribute DOMString scrolling;
- [Reflect, URL] attribute DOMString src;
- [Reflect] attribute DOMString frameBorder;
- [Reflect, URL] attribute DOMString longDesc;
- [Reflect] attribute boolean noResize;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute DOMString scrolling;
+ [CEReactions, Reflect, URL] attribute DOMString src;
+ [CEReactions, Reflect] attribute DOMString frameBorder;
+ [CEReactions, Reflect, URL] attribute DOMString longDesc;
+ [CEReactions, Reflect] attribute boolean noResize;
[CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
readonly attribute Window? contentWindow;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
- [Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginHeight;
+ [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString marginWidth;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLFormElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLFrameSetElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698