aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmloptionelement.rs
diff options
context:
space:
mode:
authorNico Burns <nico@nicoburns.com>2025-04-19 12:49:37 +0100
committerGitHub <noreply@github.com>2025-04-19 11:49:37 +0000
commitc792e6db7c3f72b5294a2041311d71aab207357d (patch)
tree09a37231c0744fc21e6b61f07d9ff6a9f53139aa /components/script/dom/htmloptionelement.rs
parent7787cab521ccc6b4d8533ebe9b45563046e0463d (diff)
downloadservo-c792e6db7c3f72b5294a2041311d71aab207357d.tar.gz
servo-c792e6db7c3f72b5294a2041311d71aab207357d.zip
Use version of `markup5ever` with `web_atoms` crate (#36542)
Upgrades `markup5ever` and fixes "unnecessary import" lints. See https://github.com/servo/html5ever/pull/599 And https://github.com/servo/stylo/pull/173 Signed-off-by: Nico Burns <nico@nicoburns.com>
Diffstat (limited to 'components/script/dom/htmloptionelement.rs')
-rw-r--r--components/script/dom/htmloptionelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmloptionelement.rs b/components/script/dom/htmloptionelement.rs
index d6e8be04b64..b573388c73a 100644
--- a/components/script/dom/htmloptionelement.rs
+++ b/components/script/dom/htmloptionelement.rs
@@ -6,7 +6,7 @@ use std::cell::Cell;
use std::convert::TryInto;
use dom_struct::dom_struct;
-use html5ever::{LocalName, Prefix, QualName, local_name, namespace_url, ns};
+use html5ever::{LocalName, Prefix, QualName, local_name, ns};
use js::rust::HandleObject;
use style::str::{split_html_space_chars, str_join};
use stylo_dom::ElementState;