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

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElement.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/HTMLIFrameElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
index 5e7c25089b4759ab3d9fe6cfdd3a0e627f8b5648..d3d3a9ff19ebe916d1c2b5ab9f20b0e309811647 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.idl
@@ -21,27 +21,27 @@
// https://html.spec.whatwg.org/#the-iframe-element
interface HTMLIFrameElement : HTMLElement {
- [Reflect, URL] attribute DOMString src;
- [Reflect] attribute DOMString srcdoc;
- [Reflect] attribute DOMString name;
- [PutForwards=value] readonly attribute DOMTokenList sandbox;
+ [CEReactions, Reflect, URL] attribute DOMString src;
+ [CEReactions, Reflect] attribute DOMString srcdoc;
+ [CEReactions, Reflect] attribute DOMString name;
+ [CEReactions, PutForwards=value] readonly attribute DOMTokenList sandbox;
// Note: The seamless attribute was once supported, but was removed.
- [Reflect] attribute boolean allowFullscreen;
- [Reflect] attribute DOMString width;
- [Reflect] attribute DOMString height;
+ [CEReactions, Reflect] attribute boolean allowFullscreen;
+ [CEReactions, Reflect] attribute DOMString width;
+ [CEReactions, Reflect] attribute DOMString height;
[CheckSecurity=ReturnValue] readonly attribute Document? contentDocument;
readonly attribute Window? contentWindow;
[CheckSecurity=ReturnValue, RaisesException] Document? getSVGDocument();
- [Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
+ [CEReactions, Reflect, ReflectOnly=("","no-referrer","origin","no-referrer-when-downgrade","origin-when-cross-origin","unsafe-url"), ReflectMissing="", ReflectInvalid=""] attribute DOMString referrerpolicy;
// obsolete members
// https://html.spec.whatwg.org/#HTMLIFrameElement-partial
- [Reflect] attribute DOMString align;
- [Reflect] attribute DOMString scrolling;
- [Reflect] attribute DOMString frameBorder;
- [Reflect, URL] attribute DOMString longDesc;
+ [CEReactions, Reflect] attribute DOMString align;
+ [CEReactions, Reflect] attribute DOMString scrolling;
+ [CEReactions, Reflect] attribute DOMString frameBorder;
+ [CEReactions, Reflect, URL] attribute DOMString longDesc;
- [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;
};

Powered by Google App Engine
This is Rietveld 408576698