├── examples ├── output │ └── .gitkeep ├── assets │ ├── tall.png │ ├── wide.png │ ├── square.png │ ├── servo-color-negative-no-container.png │ ├── google_reduced.html │ ├── noscript.html │ ├── gosub_reduced.html │ ├── servo_reduced.html │ ├── github_profile_reduced.html │ ├── input.html │ ├── servo_header_reduced.html │ ├── servo-new-reduced-1.html │ ├── docsrs_header.html │ ├── svg.html │ ├── animation.html │ ├── border.html │ ├── animated_layout.html │ ├── object_fit.html │ ├── pseudo.html │ ├── servo-new-reduced.html │ └── gosub.html ├── url.rs ├── wgpu_texture │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ ├── styles.css │ │ ├── html.rs │ │ ├── dioxus_native.rs │ │ └── shader.wgsl ├── box_shadow.rs ├── counter │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── todomvc │ └── Cargo.toml ├── outline.rs ├── inner_html.rs ├── restyle.rs ├── flex.rs ├── gradient.rs ├── html.rs ├── inline.rs └── form.rs ├── apps ├── browser │ ├── assets │ │ ├── blitz-logo.png │ │ ├── 404.html │ │ ├── icons │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── rotate-cw.svg │ │ │ ├── ellipsis-vertical.svg │ │ │ ├── external-link.svg │ │ │ └── house.svg │ │ └── browser.css │ ├── Dioxus.toml │ ├── src │ │ └── icons.rs │ └── Cargo.toml ├── bump │ ├── Cargo.toml │ └── src │ │ └── main.rs └── readme │ ├── assets │ └── blitz-markdown-overrides.css │ ├── src │ └── markdown │ │ ├── pulldown_cmark.rs │ │ └── comrak.rs │ └── Cargo.toml ├── packages ├── blitz-dom │ ├── assets │ │ └── moz-bullet-font.otf │ ├── src │ │ ├── node │ │ │ ├── mod.rs │ │ │ └── attributes.rs │ │ ├── html.rs │ │ ├── config.rs │ │ ├── events │ │ │ ├── focus.rs │ │ │ └── ime.rs │ │ ├── url.rs │ │ ├── stylo_to_cursor_icon.rs │ │ ├── accessibility.rs │ │ ├── query_selector.rs │ │ ├── lib.rs │ │ └── util.rs │ └── Cargo.toml ├── blitz-html │ ├── src │ │ ├── lib.rs │ │ └── html_document.rs │ └── Cargo.toml ├── blitz-traits │ ├── src │ │ ├── lib.rs │ │ ├── devtools.rs │ │ ├── navigation.rs │ │ ├── shell.rs │ │ └── net.rs │ └── Cargo.toml ├── debug_timer │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── stylo_taffy │ ├── src │ │ └── lib.rs │ └── Cargo.toml ├── dioxus-native │ ├── src │ │ ├── link_handler.rs │ │ ├── prelude.rs │ │ ├── contexts.rs │ │ ├── assets.rs │ │ └── dioxus_renderer.rs │ └── Cargo.toml ├── blitz-shell │ ├── src │ │ ├── accessibility.rs │ │ ├── event.rs │ │ ├── net.rs │ │ └── application.rs │ └── Cargo.toml ├── blitz-paint │ ├── src │ │ ├── color.rs │ │ ├── lib.rs │ │ ├── kurbo_css │ │ │ ├── mod.rs │ │ │ └── non_uniform_radii.rs │ │ ├── layers.rs │ │ ├── sizing.rs │ │ ├── render │ │ │ ├── form_controls.rs │ │ │ └── box_shadow.rs │ │ └── text.rs │ └── Cargo.toml ├── blitz-net │ └── Cargo.toml ├── dioxus-native-dom │ ├── src │ │ ├── sub_document.rs │ │ └── lib.rs │ └── Cargo.toml └── blitz │ └── Cargo.toml ├── .gitignore ├── LICENSE-MIT ├── CONTRIBUTING.MD ├── wpt └── runner │ ├── Cargo.toml │ └── src │ ├── panic_backtrace.rs │ ├── report.rs │ └── test_runners │ └── mod.rs ├── .github └── workflows │ └── wpt.yml └── justfile /examples/output/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep -------------------------------------------------------------------------------- /examples/assets/tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/examples/assets/tall.png -------------------------------------------------------------------------------- /examples/assets/wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/examples/assets/wide.png -------------------------------------------------------------------------------- /examples/assets/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/examples/assets/square.png -------------------------------------------------------------------------------- /apps/browser/assets/blitz-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/apps/browser/assets/blitz-logo.png -------------------------------------------------------------------------------- /packages/blitz-dom/assets/moz-bullet-font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/packages/blitz-dom/assets/moz-bullet-font.otf -------------------------------------------------------------------------------- /examples/assets/servo-color-negative-no-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DioxusLabs/blitz/main/examples/assets/servo-color-negative-no-container.png -------------------------------------------------------------------------------- /apps/browser/Dioxus.toml: -------------------------------------------------------------------------------- 1 | [application] 2 | 3 | [bundle] 4 | publisher = "DioxusLabs" 5 | identifier = "com.dioxuslabs.blitz" 6 | icon = ["./assets/blitz-logo.png"] -------------------------------------------------------------------------------- /examples/assets/google_reduced.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Embeddable
27 |Text set with innerHTML should appear below:
50 | 51 |