Skip to content
Snippets Groups Projects
Commit 3e2ec19f authored by catch's avatar catch
Browse files

Issue #3496405 by spokje: [random test failure] EditorSecurityTest::testEditorXssFilterOverride

parent 3df2a166
No related branches found
No related tags found
7 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!10786Issue #3490579 by shalini_jha, mstrelan: Add void return to all views...,!3818Issue #2140179: $entity->original gets stale between updates,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation
Pipeline #383057 passed with warnings
Pipeline: drupal

#383079

    Pipeline: drupal

    #383072

      Pipeline: drupal

      #383065

        ...@@ -66,7 +66,7 @@ public function editorJsSettingsAlter(&$settings): void { ...@@ -66,7 +66,7 @@ public function editorJsSettingsAlter(&$settings): void {
        #[Hook('editor_xss_filter_alter')] #[Hook('editor_xss_filter_alter')]
        public function editorXssFilterAlter(&$editor_xss_filter_class, FilterFormatInterface $format, ?FilterFormatInterface $original_format = NULL): void { public function editorXssFilterAlter(&$editor_xss_filter_class, FilterFormatInterface $format, ?FilterFormatInterface $original_format = NULL): void {
        // Allow tests to enable or disable this alter hook. // Allow tests to enable or disable this alter hook.
        if (!\Drupal::state()->get('editor_test_editor_xss_filter_alter_enabled', FALSE)) { if (!\Drupal::keyValue('editor_test')->get('editor_xss_filter_alter_enabled', FALSE)) {
        return; return;
        } }
        $filters = $format->filters()->getAll(); $filters = $format->filters()->getAll();
        ......
        ...@@ -445,9 +445,9 @@ public function testEditorXssFilterOverride(): void { ...@@ -445,9 +445,9 @@ public function testEditorXssFilterOverride(): void {
        $this->drupalGet('node/2/edit'); $this->drupalGet('node/2/edit');
        $this->assertSession()->fieldValueEquals('edit-body-0-value', self::$sampleContentSecured); $this->assertSession()->fieldValueEquals('edit-body-0-value', self::$sampleContentSecured);
        // Enable editor_test.module's hook_editor_xss_filter_alter() implementation // Enable editor_test's hook_editor_xss_filter_alter() implementation
        // to alter the text editor XSS filter class being used. // to alter the text editor XSS filter class being used.
        \Drupal::state()->set('editor_test_editor_xss_filter_alter_enabled', TRUE); \Drupal::keyValue('editor_test')->set('editor_xss_filter_alter_enabled', TRUE);
        // First: the Insecure text editor XSS filter. // First: the Insecure text editor XSS filter.
        $this->drupalGet('node/2/edit'); $this->drupalGet('node/2/edit');
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment