You are here

protected function CKEditorTest::getDefaultDisallowedContentConfig in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php \Drupal\Tests\ckeditor\Kernel\CKEditorTest::getDefaultDisallowedContentConfig()
2 calls to CKEditorTest::getDefaultDisallowedContentConfig()
CKEditorTest::testGetJSSettings in core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php
Tests CKEditor::getJSSettings().
CKEditorTest::testInternalGetConfig in core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php
Tests Internal::getConfig().

File

core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php, line 468

Class

CKEditorTest
Tests for the 'CKEditor' text editor plugin.

Namespace

Drupal\Tests\ckeditor\Kernel

Code

protected function getDefaultDisallowedContentConfig() {
  return [
    '*' => [
      'attributes' => 'on*',
    ],
  ];
}