Browse Source

fallback to global attributes when mapping rsx rosetta html attribute names

Evan Almloff 1 year ago
parent
commit
682beeccfd
1 changed files with 8 additions and 0 deletions
  1. 8 0
      packages/html/src/elements.rs

+ 8 - 0
packages/html/src/elements.rs

@@ -345,6 +345,14 @@ macro_rules! builder_constructors {
                 )*
             )*
 
+            if let Some(name) = crate::map_html_global_attributes_to_rsx(html) {
+                return Some(name);
+            }
+
+            if let Some(name) = crate::map_html_svg_attributes_to_rsx(html) {
+                return Some(name);
+            }
+
             None
         }