Files
rust_browser/crates/web_api/Cargo.toml
Zachary D. Rowitsch b960dd3a3e Add innerHTML support with fragment parsing and HTML serialization
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>
2026-02-28 02:37:21 -05:00

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