diff --git a/cssom-view-1/Overview.bs b/cssom-view-1/Overview.bs
index 8d8e3cb3774..eea210fb766 100644
--- a/cssom-view-1/Overview.bs
+++ b/cssom-view-1/Overview.bs
@@ -1997,6 +1997,18 @@ Issue: In what order are scrollend events dispatched? Ordered based on scroll st
1. Otherwise, fire an event named scrollend at target.
1. Empty doc's pending scrollend event targets.
+
Moving viewports
+
+This section integrates with the event loop defined in HTML. [[!HTML]]
+
+When asked to run the move steps for a {{Document}} doc, run these steps:
+
+1. If doc's client window has had its position relative to the Web-exposed screen area changed
+ (e.g. as a result of the user moving the browser window)
+ since the last time these steps were run,
+ fire an event named move
+ at the {{Window}} object associated with doc.
+
Event summary
This section is non-normative.
@@ -2027,6 +2039,12 @@ Issue: In what order are scrollend events dispatched? Ordered based on scroll st
Fired at the {{VisualViewport}}, {{Document}}, or element when a scroll is completed: the
{{VisualViewport}}, viewport, or element has been scrolled, the scroll sequence has ended and any scroll offset changes have
been applied.
+ |
+ move
+ | {{Event}}
+ | {{Window}}
+ | Fired at the {{Window}} when the client window is moved relative to the Web-exposed screen area.
+ |