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

Unified Diff: third_party/WebKit/Source/core/html/HTMLDialogElement.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/HTMLDialogElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLDialogElement.idl b/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
index b6d871128754bcfc19a0243030ed6b58c73e951a..e6704616f29c3164b46f5a32d31e02d4969993a7 100644
--- a/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLDialogElement.idl
@@ -26,11 +26,11 @@
// https://html.spec.whatwg.org/#the-dialog-element
interface HTMLDialogElement : HTMLElement {
- [Reflect] attribute boolean open;
+ [CEReactions, Reflect] attribute boolean open;
attribute DOMString returnValue;
// FIXME: show() and showModal() should take an anchor argument.
- void show();
- [RaisesException] void showModal();
+ [CEReactions] void show();
+ [CEReactions, RaisesException] void showModal();
// FIXME: The returnValue argument should have no default value.
- [RaisesException] void close(optional DOMString returnValue = null);
+ [CEReactions, RaisesException] void close(optional DOMString returnValue = null);
};

Powered by Google App Engine
This is Rietveld 408576698