diff --git a/typed-html/src/elements.rs b/typed-html/src/elements.rs index e69bfd1..d80917e 100644 --- a/typed-html/src/elements.rs +++ b/typed-html/src/elements.rs @@ -2,7 +2,7 @@ #![allow(non_camel_case_types)] -use crate::dom::{Node, TextNode}; +use crate::dom::{Node, TextNode, UnsafeTextNode}; use crate::types::*; use crate::OutputType; use axohtml_macros::declare_elements; @@ -311,7 +311,7 @@ declare_elements! { src: Uri, text: String, type: String, // TODO could be an enum - } in [MetadataContent, FlowContent, PhrasingContent, TableColumnContent] with PhrasingContent; + } in [MetadataContent, FlowContent, PhrasingContent, TableColumnContent] with UnsafeTextNode; section in [FlowContent, SectioningContent] with FlowContent; select { autocomplete: String, @@ -492,14 +492,9 @@ fn test_aria() { #[test] fn test_js() { use crate as axohtml; - use crate::{dom::DOMTree, html, text, unsafe_text}; + use crate::{dom::DOMTree, html, unsafe_text}; let frag: DOMTree = html!(); - let frag1: DOMTree = html!(); assert_eq!("", frag.to_string()); - assert_eq!( - "", - frag1.to_string() - ); }