Security update to Drupal 8.4.6
[yaffs-website] / web / core / modules / block / tests / modules / block_test / src / Plugin / Block / TestXSSTitleBlock.php
1 <?php
2
3 namespace Drupal\block_test\Plugin\Block;
4
5 /**
6  * Provides a block to test XSS in title.
7  *
8  * @Block(
9  *   id = "test_xss_title",
10  *   admin_label = "<script>alert('XSS subject');</script>"
11  * )
12  */
13 class TestXSSTitleBlock extends TestCacheBlock {
14 }