-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running node-w3c-validator throw error #3
Comments
@forethoughtde Hi! can you attach your "ernaehrung_rezepte.html" file? for several tests |
@dutchenkoOleg There were two problems; The first one was form element had an empty action and no method attribute and the second problem was non-exist value used in for attribute in label. |
Okay, I will try to reproduce this case and test |
@forethoughtde I tested node-w3c-validator with this markup <form id="test-1" action="">
<label for></label>
</form>
<form id="test-2" action>
<label for="non-exist-1">Lorem ipsum</label>
</form>
<form id="test-3" action>
<label for="non-exist-2">
<input type="checkbox">
</label>
</form>
<form id="test-4" method="get">
<label for>
<input type="checkbox">
</label>
<label for="non-exist-1">Lorem ipsum</label>
<label for="non-exist-2">
<input type="checkbox">
</label>
</form> and had no same error in process as yours. Can you share part of your markup, in which you suppose problems?
|
Closed for now. |
This is following error message
The text was updated successfully, but these errors were encountered: