Skip to main content

iframe

Function iframe 

Source
pub fn iframe() -> Element
Expand description

A nested browsing context: <iframe>. Prefer iframe_titled, which cannot be built without the title an assistive technology needs.

ยงExamples

use winged_rust::prelude::*;
let el = iframe();
assert_eq!(el.tag(), "iframe");