1234567891011121314151617181920212223 |
- use html_parser::Dom;
- #[test]
- fn raw_attribute() {
- let html = r#"
- <div>
- <div unrecognizedattribute="asd">hello world!</div>
- </div>
- "#
- .trim();
- let dom = Dom::parse(html).unwrap();
- let body = dioxus_rsx_rosetta::rsx_from_html(&dom);
- let out = dioxus_autofmt::write_block_out(&body).unwrap();
- let expected = r#"
- div {
- div { "unrecognizedattribute": "asd", "hello world!" }
- }"#;
- pretty_assertions::assert_eq!(&out, &expected);
- }
|