Issue #2421713 by JeroenT: Remove deprecated functions in WebTestBase.php

8.0.x
webchick 2015-02-18 09:22:04 -08:00
parent afbd12c425
commit fdbfed3cad
1 changed files with 0 additions and 40 deletions

View File

@ -2420,26 +2420,6 @@ abstract class WebTestBase extends TestBase {
return $header;
}
/**
* Gets the current raw HTML of requested page.
*
* @deprecated 8.x
* Use getRawContent().
*/
protected function drupalGetContent() {
return $this->getRawContent();
}
/**
* Gets the value of drupalSettings for the currently-loaded page.
*
* @deprecated 8.x
* Use getDrupalSettings().
*/
protected function drupalGetSettings() {
return $this->getDrupalSettings();
}
/**
* Gets an array containing all emails sent during this test case.
*
@ -2466,26 +2446,6 @@ abstract class WebTestBase extends TestBase {
return $filtered_emails;
}
/**
* Sets the raw HTML content.
*
* @deprecated 8.x
* Use setRawContent().
*/
protected function drupalSetContent($content) {
$this->setRawContent($content);
}
/**
* Sets the value of drupalSettings for the currently-loaded page.
*
* @deprecated 8.x
* Use setDrupalSettings().
*/
protected function drupalSetSettings($settings) {
$this->setDrupalSettings($settings);
}
/**
* Passes if the internal browser's URL matches the given path.
*