Chromium Code Reviews

Unified Diff: Source/core/html/HTMLMenuItemElement.idl

Issue 243403006: Implement contextmenu attribute with basic support of <menu> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added test for RelatedEvent constructors Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/html/HTMLMenuItemElement.idl
diff --git a/Source/core/html/HTMLMenuItemElement.idl b/Source/core/html/HTMLMenuItemElement.idl
new file mode 100644
index 0000000000000000000000000000000000000000..8c148b6bd36158cce345f8b8cb8b8b3bf239386a
--- /dev/null
+++ b/Source/core/html/HTMLMenuItemElement.idl
@@ -0,0 +1,14 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+[
+ RuntimeEnabled=ContextMenu,
+] interface HTMLMenuItemElement : HTMLElement {
+ [Reflect] attribute DOMString type;
+ [Reflect] attribute DOMString label;
+ [Reflect] attribute boolean disabled;
+ [Reflect] attribute boolean checked;
+ [Reflect] attribute boolean default;
+ // FIXME(sanjoy): icon, radiogroup and command need to be implemented.
+};

Powered by Google App Engine