Skip to content

Commit

Permalink
Removed events that do not target Window from the list
Browse files Browse the repository at this point in the history
  • Loading branch information
teoli2003 committed Dec 1, 2023
1 parent 049b078 commit b91357d
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions files/en-us/web/api/window/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ _This interface inherits methods from the {{domxref("EventTarget")}} interface._

## Events

Listen to these events using [`addEventListener()`](/en-US/docs/Web/API/EventTarget/addEventListener) or by assigning an event listener to the `oneventname` property of this interface.
Listen to these events using [`addEventListener()`](/en-US/docs/Web/API/EventTarget/addEventListener) or by assigning an event listener to the `oneventname` property of this interface. In addition to the events listed below, many events can bubble from the {{domxref("Document")}} contained in the window object.

- {{domxref("Window.devicemotion_event", "devicemotion")}}
- : Fired at a regular interval, indicating the amount of physical force of acceleration the device is receiving and the rate of rotation, if available.
Expand All @@ -302,17 +302,6 @@ Listen to these events using [`addEventListener()`](/en-US/docs/Web/API/EventTar
- {{domxref("Window/storage_event", "storage")}}
- : Fired when a storage area (`localStorage` or `sessionStorage`) has been modified in the context of another document.

### Animation events

- {{domxref("Window/animationcancel_event", "animationcancel")}}
- : Fired when an animation unexpectedly aborts.
- {{domxref("Window/animationend_event", "animationend")}}
- : Fired when an animation has completed normally.
- {{domxref("Window/animationiteration_event", "animationiteration")}}
- : Fired when an animation iteration has completed.
- {{domxref("Window/animationstart_event", "animationstart")}}
- : Fired when an animation starts.

### Clipboard events

- {{domxref("Window/copy_event", "copy")}}
Expand Down Expand Up @@ -394,17 +383,6 @@ Listen to these events using [`addEventListener()`](/en-US/docs/Web/API/EventTar
- {{domxref("Window/unhandledrejection_event", "unhandledrejection")}}
- : Sent when a JavaScript {{jsxref("Promise")}} is rejected but there is no handler in place to catch the rejection.

### Transition events

- {{domxref("Window/transitioncancel_event", "transitioncancel")}}
- : Fired when a [CSS transition](/en-US/docs/Web/CSS/CSS_transitions/Using_CSS_transitions) is canceled.
- {{domxref("Window/transitionend_event", "transitionend")}}
- : Fired when a [CSS transition](/en-US/docs/Web/CSS/CSS_transitions/Using_CSS_transitions) has completed.
- {{domxref("Window/transitionrun_event", "transitionrun")}}
- : Fired when a [CSS transition](/en-US/docs/Web/CSS/CSS_transitions/Using_CSS_transitions) is first created.
- {{domxref("Window/transitionstart_event", "transitionstart")}}
- : Fired when a [CSS transition](/en-US/docs/Web/CSS/CSS_transitions/Using_CSS_transitions) has actually started.

### Deprecated events

- {{domxref("Window/orientationchange_event", "orientationchange")}} {{Deprecated_Inline}}
Expand Down

0 comments on commit b91357d

Please sign in to comment.