(&self, props: dioxus_document::ScriptProps)
| 50 | } |
| 51 | |
| 52 | fn create_script(&self, props: dioxus_document::ScriptProps) { |
| 53 | let attributes = props.attributes(); |
| 54 | self.create_head_element("script", &attributes, props.script_contents().ok()); |
| 55 | } |
| 56 | |
| 57 | fn create_style(&self, props: dioxus_document::StyleProps) { |
| 58 | let attributes = props.attributes(); |
nothing calls this directly
no test coverage detected