public function ResponseHeaderBagTest::provideMakeDispositionFail

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/ResponseHeaderBagTest.php, line 275

Class

ResponseHeaderBagTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function provideMakeDispositionFail() {
  return array(
    array(
      'attachment',
      'foo%20bar.html',
    ),
    array(
      'attachment',
      'foo/bar.html',
    ),
    array(
      'attachment',
      '/foo.html',
    ),
    array(
      'attachment',
      'foo\\bar.html',
    ),
    array(
      'attachment',
      '\\foo.html',
    ),
    array(
      'attachment',
      'föö.html',
    ),
  );
}