diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index 29081de38c6..f376164afe7 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -1226,6 +1226,9 @@
Notification received when the mouse cursor leaves the [Viewport]'s visible area, that is not occluded behind other [Control]s or [Window]s, provided its [member Viewport.gui_disable_input] is [code]false[/code] and regardless if it's currently focused or not.
+
+ Notification received when the window is moved.
+
Notification received from the OS when the application is exceeding its allocated memory.
Implemented only on iOS.
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 1cd99b79a0e..f40b92b19ba 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -3820,6 +3820,7 @@ void Node::_bind_methods() {
BIND_CONSTANT(NOTIFICATION_WM_DPI_CHANGE);
BIND_CONSTANT(NOTIFICATION_VP_MOUSE_ENTER);
BIND_CONSTANT(NOTIFICATION_VP_MOUSE_EXIT);
+ BIND_CONSTANT(NOTIFICATION_WM_POSITION_CHANGED);
BIND_CONSTANT(NOTIFICATION_OS_MEMORY_WARNING);
BIND_CONSTANT(NOTIFICATION_TRANSLATION_CHANGED);
BIND_CONSTANT(NOTIFICATION_WM_ABOUT);