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
Reading https://html.spec.whatwg.org/#cors-settings-attributes, crossorigin allows the empty string to be treated as anonymous. This means that <script crossorigin> is equivalent to <script crossorigin="">.
crossorigin
anonymous
<script crossorigin>
<script crossorigin="">
Should crossorigin be added to the booleanAttributes list in
SwiftSoup/Sources/Attribute.swift
Lines 15 to 20 in e2d1120
The text was updated successfully, but these errors were encountered:
sounds like it
Sorry, something went wrong.
No branches or pull requests
Reading https://html.spec.whatwg.org/#cors-settings-attributes,
crossorigin
allows the empty string to be treated asanonymous
. This means that<script crossorigin>
is equivalent to<script crossorigin="">
.Should crossorigin be added to the booleanAttributes list in
SwiftSoup/Sources/Attribute.swift
Lines 15 to 20 in e2d1120
The text was updated successfully, but these errors were encountered: