function ElementsLabelsTest::testTitleEscaping
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php \Drupal\Tests\system\Functional\Form\ElementsLabelsTest::testTitleEscaping()
- 8.9.x core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php \Drupal\Tests\system\Functional\Form\ElementsLabelsTest::testTitleEscaping()
- 11.x core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php \Drupal\Tests\system\Functional\Form\ElementsLabelsTest::testTitleEscaping()
Tests XSS-protection of element labels.
1 call to ElementsLabelsTest::testTitleEscaping()
- ElementsLabelsTest::testFormElements in core/
modules/ system/ tests/ src/ Functional/ Form/ ElementsLabelsTest.php - Tests form elements.
File
-
core/
modules/ system/ tests/ src/ Functional/ Form/ ElementsLabelsTest.php, line 115
Class
- ElementsLabelsTest
- Tests form element labels, required markers and associated output.
Namespace
Drupal\Tests\system\Functional\FormCode
protected function testTitleEscaping() : void {
$this->drupalGet('form_test/form-labels');
foreach (FormTestLabelForm::$typesWithTitle as $type) {
$this->assertSession()
->responseContains("{$type} alert('XSS') is XSS filtered!");
$this->assertSession()
->responseNotContains("{$type} <script>alert('XSS')</script> is XSS filtered!");
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.