Skip to content
Snippets Groups Projects
Verified Commit 6f437449 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3464340 by herved, ahsannazir, smustgrave, longwave, nod_: JS errors...

Issue #3464340 by herved, ahsannazir, smustgrave, longwave, nod_: JS errors from Drupal.behaviors.activeLinks (... is not a valid selector)

(cherry picked from commit 91cd1ab5)
parent fece4f7a
No related branches found
No related tags found
2 merge requests!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline #280876 passed with warnings
Pipeline: drupal

#280880

    ......@@ -23,11 +23,11 @@
    // Start by finding all potentially active links.
    const path = drupalSettings.path;
    const queryString = JSON.stringify(path.currentQuery);
    const querySelector = path.currentQuery
    ? `[data-drupal-link-query='${queryString}']`
    const querySelector = queryString
    ? `[data-drupal-link-query="${CSS.escape(queryString)}"]`
    : ':not([data-drupal-link-query])';
    const originalSelectors = [
    `[data-drupal-link-system-path="${path.currentPath}"]`,
    `[data-drupal-link-system-path="${CSS.escape(path.currentPath)}"]`,
    ];
    let selectors;
    ......
    <?php
    declare(strict_types=1);
    namespace Drupal\Tests\system\FunctionalJavascript;
    use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
    /**
    * Tests active link JS behavior.
    *
    * @see Drupal.behaviors.activeLinks
    *
    * @group system
    */
    class ActiveLinkTest extends WebDriverTestBase {
    /**
    * {@inheritdoc}
    */
    protected $defaultTheme = 'stark';
    /**
    * Ensures no JS error is thrown with query strings containing special chars.
    */
    public function testQueryStringQuotes(): void {
    $user = $this->createUser();
    $this->drupalLogin($user);
    $this->drupalGet($this->getSession()->getCurrentUrl(), ['query' => ['foo' => "\"'[](){}*+~>|\\/:;,.!@#$%^&-_=?<>"]]);
    $this->failOnJavaScriptErrors();
    }
    }
    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