Skip to content
Snippets Groups Projects
Commit 00df5bad authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2407743 by mortendk, danquah, rteijeiro, davidhernandez,...

Issue #2407743 by mortendk, danquah, rteijeiro, davidhernandez, sivaji@knackforge.com: Remove classes from system templates s*.html.twig
parent 2bbeb8f3
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -25,6 +25,10 @@ class MessageTest extends KernelTestBase {
* Tests setting messages output.
*/
function testMessages() {
// Enable the Classy theme.
\Drupal::service('theme_handler')->install(['classy']);
$this->config('system.theme')->set('default', 'classy')->save();
drupal_set_message('An error occurred', 'error');
drupal_set_message('But then something nice happened');
$messages = array(
......
......@@ -26,13 +26,7 @@
*/
#}
{% for type, messages in message_list %}
{%
set classes = [
'messages',
'messages--' ~ type,
]
%}
<div class="{{ attributes.addClass(classes).class }}" role="contentinfo" aria-label="{{ status_headings[type] }}">
<div class="{{ attributes.class }}" role="contentinfo" aria-label="{{ status_headings[type] }}">
{% if type == 'error' %}
<div role="alert">
{% endif %}
......@@ -40,9 +34,9 @@
<h2 class="visually-hidden">{{ status_headings[type] }}</h2>
{% endif %}
{% if messages|length > 1 %}
<ul class="messages__list">
<ul>
{% for message in messages %}
<li class="messages__item">{{ message }}</li>
<li>{{ message }}</li>
{% endfor %}
</ul>
{% else %}
......@@ -52,6 +46,4 @@
</div>
{% endif %}
</div>
{# Remove type specific classes. #}
{{ attributes.removeClass(classes) }}
{% endfor %}
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