protected function XssTest::setUp

File

drupal/core/tests/Drupal/Tests/Component/Utility/XssTest.php, line 39
Contains \Drupal\Tests\Component\Utility\XssTest.

Class

XssTest
Tests the Xss utility.

Namespace

Drupal\Tests\Component\Utility

Code

protected function setUp() {
  parent::setUp();
  $allowed_protocols = array(
    'http',
    'https',
    'ftp',
    'news',
    'nntp',
    'telnet',
    'mailto',
    'irc',
    'ssh',
    'sftp',
    'webcal',
    'rtsp',
  );
  UrlValidator::setAllowedProtocols($allowed_protocols);
}