2cd32e2bf749b59a0b011c509bcb8a2683b1ca01
[yaffs-website] / web / core / modules / outside_in / tests / modules / outside_in_test_css / outside_in_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 outside_in_test_css_page_attachments(array &$attachments) {
14   // Unconditionally attach an asset to the page.
15   $attachments['#attached']['library'][] = 'outside_in_test_css/drupal.css_fix';
16 }