From f293288ad97c035d6e4c00c6a005fb646b31856d Mon Sep 17 00:00:00 2001 From: Muhammad Hamza Date: Sat, 24 Sep 2022 20:00:42 +0500 Subject: [PATCH] bless the fail.stderr --- .../yew-macro/tests/html_lints/fail.stderr | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/packages/yew-macro/tests/html_lints/fail.stderr b/packages/yew-macro/tests/html_lints/fail.stderr index 54698329b1d..64551afcdc0 100644 --- a/packages/yew-macro/tests/html_lints/fail.stderr +++ b/packages/yew-macro/tests/html_lints/fail.stderr @@ -1,27 +1,3 @@ -warning: All `` elements should have a `href` attribute. This makes it possible for assistive technologies to correctly interpret what your links point to. https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML#more_on_links - --> tests/html_lints/fail.rs:5:10 - | -5 | { "I don't have a href attribute" } - | ^ - -warning: '#' is not a suitable value for the `href` attribute. Without a meaningful attribute assistive technologies will struggle to understand your webpage. https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML#onclick_events - --> tests/html_lints/fail.rs:8:17 - | -8 | { "I have a malformed href attribute" } - | ^^^ - -warning: 'javascript:void(0)' is not a suitable value for the `href` attribute. Without a meaningful attribute assistive technologies will struggle to understand your webpage. https://developer.mozilla.org/en-US/docs/Learn/Accessibility/HTML#onclick_events - --> tests/html_lints/fail.rs:11:17 - | -11 | { "I have a malformed href attribute" } - | ^^^^^^^^^^^^^^^^^^^^ - -warning: All `` tags should have an `alt` attribute which provides a human-readable description - --> tests/html_lints/fail.rs:14:10 - | -14 | - | ^^^ - warning: The tag 'tExTAreA' is not matching its normalized form 'textarea'. If you want to keep this form, change this to a dynamic tag `@{"tExTAreA"}`. --> tests/html_lints/fail.rs:17:10 |