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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTrackElement.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/HTMLTrackElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTrackElement.idl b/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
index 08b3f14b0a5b2f69c03bb10cbde8fceabd4a3d97..4dc0dd7f01d946f38dd0090243611bcd8e9890fa 100644
--- a/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
@@ -26,11 +26,11 @@
// https://html.spec.whatwg.org/#the-track-element
interface HTMLTrackElement : HTMLElement {
- attribute DOMString kind;
- [Reflect, URL] attribute DOMString src;
- [Reflect] attribute DOMString srclang;
- [Reflect] attribute DOMString label;
- [Reflect] attribute boolean default;
+ [CEReactions] attribute DOMString kind;
+ [CEReactions, Reflect, URL] attribute DOMString src;
+ [CEReactions, Reflect] attribute DOMString srclang;
+ [CEReactions, Reflect] attribute DOMString label;
+ [CEReactions, Reflect] attribute boolean default;
const unsigned short NONE = 0;
const unsigned short LOADING = 1;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTitleElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLUListElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698