Add webkitdirectory to the boolean attributes list (#3214)

* Implement bool IntoPropValue String & AttrValue

* Revert "Implement bool IntoPropValue String & AttrValue"

This reverts commit 8468e7a3d9d5d55fc6e1360e49bb2be9f3772376.

* Add webkitdirectory to the boolean attributes list
This commit is contained in:
Julius Lungys 2023-04-05 21:40:12 +03:00 committed by GitHub
parent 8549ebe361
commit 24d79e840a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,6 +91,8 @@ static BOOLEAN_SET: Lazy<HashSet<&'static str>> = Lazy::new(|| {
"reversed",
"selected",
"truespeed",
// Not-yet-standardized
"webkitdirectory",
]
.into()
});