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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOutputElement.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/HTMLOutputElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.idl b/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
index 8efb9a075ab120a895ae896f0221ec3061607be8..562f6f3c94e801921b7b602998df023c5f275e51 100644
--- a/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.idl
@@ -25,13 +25,13 @@
// https://html.spec.whatwg.org/#the-output-element
interface HTMLOutputElement : HTMLElement {
- [PutForwards=value] readonly attribute DOMTokenList htmlFor;
+ [CEReactions, PutForwards=value] readonly attribute DOMTokenList htmlFor;
[ImplementedAs=formOwner] readonly attribute HTMLFormElement? form;
- [Reflect] attribute DOMString name;
+ [CEReactions, Reflect] attribute DOMString name;
readonly attribute DOMString type;
- attribute DOMString defaultValue;
- attribute DOMString value;
+ [CEReactions] attribute DOMString defaultValue;
+ [CEReactions] attribute DOMString value;
readonly attribute boolean willValidate;
readonly attribute ValidityState validity;

Powered by Google App Engine
This is Rietveld 408576698