servo/servo
Ver no GitHubDon't use `to_string` for owned `DOMString` if it is not gonna be used again. Use `String::from`
Open
#44.999 aberto em 19 de mai. de 2026
C-assignedE-less-complexI-cleanupI-perf-bloatI-perf-slowgood first issue
Description
String::from
consumes the DOMString and is straightforward.
to_string
goes through Formatter, which is less efficient.