Module: FunHtml::SpecElements::HTMLUnknownElement
- Included in:
- HTMLAllElements
- Defined in:
- lib/fun_html/spec_elements.rb
Instance Method Summary collapse
- #applet(attributes = nil, &elements) ⇒ Object
- #bgsound(attributes = nil, &elements) ⇒ Object
- #blink(attributes = nil, &elements) ⇒ Object
- #isindex(attributes = nil, &elements) ⇒ Object
- #keygen(attributes = nil, &elements) ⇒ Object
- #multicol(attributes = nil, &elements) ⇒ Object
- #nextid(attributes = nil, &elements) ⇒ Object
- #spacer(attributes = nil, &elements) ⇒ Object
Instance Method Details
#applet(attributes = nil, &elements) ⇒ Object
651 652 653 |
# File 'lib/fun_html/spec_elements.rb', line 651 def applet(attributes = nil, &elements) write('<applet', '</applet>', attributes, &elements) end |
#bgsound(attributes = nil, &elements) ⇒ Object
655 656 657 |
# File 'lib/fun_html/spec_elements.rb', line 655 def bgsound(attributes = nil, &elements) write('<bgsound', '</bgsound>', attributes, &elements) end |
#blink(attributes = nil, &elements) ⇒ Object
671 672 673 |
# File 'lib/fun_html/spec_elements.rb', line 671 def blink(attributes = nil, &elements) write('<blink', '</blink>', attributes, &elements) end |
#isindex(attributes = nil, &elements) ⇒ Object
659 660 661 |
# File 'lib/fun_html/spec_elements.rb', line 659 def isindex(attributes = nil, &elements) write('<isindex', '</isindex>', attributes, &elements) end |
#keygen(attributes = nil, &elements) ⇒ Object
663 664 665 |
# File 'lib/fun_html/spec_elements.rb', line 663 def keygen(attributes = nil, &elements) write('<keygen', '</keygen>', attributes, &elements) end |
#multicol(attributes = nil, &elements) ⇒ Object
675 676 677 |
# File 'lib/fun_html/spec_elements.rb', line 675 def multicol(attributes = nil, &elements) write('<multicol', '</multicol>', attributes, &elements) end |
#nextid(attributes = nil, &elements) ⇒ Object
667 668 669 |
# File 'lib/fun_html/spec_elements.rb', line 667 def nextid(attributes = nil, &elements) write('<nextid', '</nextid>', attributes, &elements) end |
#spacer(attributes = nil, &elements) ⇒ Object
679 680 681 |
# File 'lib/fun_html/spec_elements.rb', line 679 def spacer(attributes = nil, &elements) write('<spacer', '</spacer>', attributes, &elements) end |