We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Deprecated MIME type not omitted on inline scripts:
<script type="text/javascript">alert("Hello");</script>
minifies to:
<script type=text/javascript>alert("Hello");</script>
should minify to:
<script>alert("Hello");</script>
https://validator.w3.org/ flags this as
Warning: The type attribute is unnecessary for JavaScript resources.
type
The text was updated successfully, but these errors were encountered:
[+]: add test case
d40f241
for issue voku#46
[+]: fix for "doRemoveDeprecatedTypeFromScriptTag"
685158d
- closes voku#46 - doRemoveDeprecatedTypeFromScriptTag now applies to script tags without src attribute
Thanks for the bug report and for the fix. It's fixed in version 4.3.0
Sorry, something went wrong.
No branches or pull requests
Deprecated MIME type not omitted on inline scripts:
minifies to:
should minify to:
https://validator.w3.org/ flags this as
The text was updated successfully, but these errors were encountered: