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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSourceElement.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/HTMLSourceElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLSourceElement.idl b/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
index 248bfe561ff1668deae51e132fcb2bc6854fa991..5a7882a7e36bb6f6812241f784497abdc7f9dc45 100644
--- a/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLSourceElement.idl
@@ -26,11 +26,11 @@
// https://html.spec.whatwg.org/#the-source-element
interface HTMLSourceElement : HTMLElement {
- [Reflect, URL] attribute DOMString src;
- attribute DOMString type;
+ [CEReactions, Reflect, URL] attribute DOMString src;
+ [CEReactions] attribute DOMString type;
// https://html.spec.whatwg.org/#the-source-element-when-used-with-the-picture-element
- [Reflect] attribute DOMString srcset;
- [Reflect] attribute DOMString sizes;
- [Reflect] attribute DOMString media;
+ [CEReactions, Reflect] attribute DOMString srcset;
+ [CEReactions, Reflect] attribute DOMString sizes;
+ [CEReactions, Reflect] attribute DOMString media;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSlotElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLStyleElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698