diff --git a/sections/event-types.txt b/sections/event-types.txt
index a2c51db..37a2490 100644
--- a/sections/event-types.txt
+++ b/sections/event-types.txt
@@ -1510,6 +1510,51 @@ myDiv.addEventListener("auxclick", function(e) {
before or after the EVENT{mouseup} event.
+
+
+ ++------------------+--------------------------------------------------------------------------------------+ event-definition
+ =| % | |
+ +------------------+--------------------------------------------------------------------------------------+
+ +| Type | contextmenudismiss
|
+ +| Interface | {{PointerEvent}} |
+ +| Sync / Async | Async |
+ +| Bubbles | Yes |
+ +| Trusted Targets | Element
|
+ +| Cancelable | No |
+ +| Composed | Yes |
+ +| Default action | None |
+ +| Context
| |
+ | (trusted events) | - {{Event}}.{{Event/target}} : element which received the preceeding |
+ | | EVENT(contextmenu) event.
|
+ | | - {{UIEvent}}.{{UIEvent/view}} :
Window
|
+ | | - {{UIEvent}}.{{UIEvent/detail}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/screenX}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/screenY}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/clientX}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/clientY}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/altKey}} :
false
|
+ | | - {{MouseEvent}}.{{MouseEvent/ctrlKey}} :
false
|
+ | | - {{MouseEvent}}.{{MouseEvent/shiftKey}} :
false
|
+ | | - {{MouseEvent}}.{{MouseEvent/metaKey}} :
false
|
+ | | - {{MouseEvent}}.{{MouseEvent/button}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/buttons}} : 0
|
+ | | - {{MouseEvent}}.{{MouseEvent/relatedTarget}} :
null
|
+ | |
|
+ ++------------------+--------------------------------------------------------------------------------------+
+
+ A user agent MUST dispatch this event before closing a context menu.
+ If the system context menu has been suppressed by canceling the
+ EVENT{contextmenu} event, the user agent still MUST dispatch this
+ event to allow the page script to close a custom context menu under the same
+ condition like a system context menu.
+
+ Every EVENT{contextmenu} event MUST be followed by a corresponding
+ EVENT{contextmenudismiss} event with an identical
+ {{Event}}.{{Event/target}}. However, if the target of the
+ EVENT{contextmenu} event has been removed from DOM before firing the
+ EVENT{contextmenudismiss} event, the latter will be fired to the HTML
+ body element.
+
dblclick
++------------------+--------------------------------------------------------------------------------------+ event-definition