Same filename and directory in other branches
  1. 8.9.x core/modules/block/tests/modules/block_test/src/Plugin/Block/TestXSSTitleBlock.php
  2. 9 core/modules/block/tests/modules/block_test/src/Plugin/Block/TestXSSTitleBlock.php

Namespace

Drupal\block_test\Plugin\Block

File

core/modules/block/tests/modules/block_test/src/Plugin/Block/TestXSSTitleBlock.php
View source
<?php

namespace Drupal\block_test\Plugin\Block;


/**
 * Provides a block to test XSS in title.
 *
 * @Block(
 *   id = "test_xss_title",
 *   admin_label = "<script>alert('XSS subject');</script>"
 * )
 */
class TestXSSTitleBlock extends TestCacheBlock {

}

Classes

Namesort descending Description
TestXSSTitleBlock Provides a block to test XSS in title.