Method \Magento\Cms\Controller\Adminhtml\Page\Save::executeInternal() ignores the result of the «cms_page_prepare_save» event while validation

The method \Magento\Cms\Controller\Adminhtml\Page\Save::executeInternal() fires the cms_page_prepare_save event:

https://github.com/magento/magento2/blob/f578e54e093c31378ca981cfe336f7e651194585/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php#L55-L60

The current page is the event parameter, so event handlers can modify the page.
But the validation ignores the actual page data and validates only old page data (data before event has been triggered):

https://github.com/magento/magento2/blob/f578e54e093c31378ca981cfe336f7e651194585/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php#L62-L64

I propose to replace the line
https://github.com/magento/magento2/blob/f578e54e093c31378ca981cfe336f7e651194585/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php#L62

with the new one:

if (!$this->dataProcessor->validate($model->getData())) {

https://github.com/magento/magento2/issues/2240