Implement Element.innerHTML getter/setter across three crates: - html: add parse_fragment for parsing HTML into existing parent nodes without creating implicit html/head/body elements - dom: add inner_html serialization with proper text/attribute escaping and void element handling - web_api: wire innerHTML getter/setter in DomHost, add html dependency Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
277 B
TOML
16 lines
277 B
TOML
[package]
|
|
name = "web_api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
dom = { path = "../dom" }
|
|
html = { path = "../html" }
|
|
js = { path = "../js" }
|
|
js_parser = { path = "../js_parser" }
|
|
shared = { path = "../shared" }
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|