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
diff --git a/web/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.module b/web/core/modules/settings_tray/tests/modules/settings_tray_test_css/settings_tray_test_css.module
new file mode 100644 (file)
index 0000000..3375399
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+/**
+ * @file
+ * Module for attaching CSS during tests.
+ *
+ * CSS pointer-events properties cause testing errors.
+ */
+
+/**
+ * Implements hook_page_attachments().
+ */
+function settings_tray_test_css_page_attachments(array &$attachments) {
+  // Unconditionally attach an asset to the page.
+  $attachments['#attached']['library'][] = 'settings_tray_test_css/drupal.css_fix';
+}