Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / settings_tray / tests / modules / settings_tray_test_css / settings_tray_test_css.module
1 <?php
2
3 /**
4  * @file
5  * Module for attaching CSS during tests.
6  *
7  * CSS pointer-events properties cause testing errors.
8  */
9
10 /**
11  * Implements hook_page_attachments().
12  */
13 function settings_tray_test_css_page_attachments(array &$attachments) {
14   // Unconditionally attach an asset to the page.
15   $attachments['#attached']['library'][] = 'settings_tray_test_css/drupal.css_fix';
16 }