Change record status: 
Project: 
Introduced in branch: 
8.0.x
Description: 

drupal_render_page() has been removed because it is obsolete.

Drupal 7

function drupal_render_page($page) {
  $page = drupal_prepare_page($page);
  return drupal_render($page);
}

Drupal 8

Use the html_fragment_renderer service if appropriate. However, the concept of "page render" does not exist in Drupal 8 the same way it did in Drupal 7 so there is no direct equivalent.

Impacts: 
Module developers
Themers