xhtml-frames.rnc 774 B

123456789101112131415161718192021222324252627
  1. # Frames Module
  2. include "xhtml-struct.rnc" {
  3. html = element html { html.attlist, head, frameset }
  4. }
  5. frameset =
  6. element frameset {
  7. frameset.attlist,
  8. ((frameset | frame)+ & noframes?)
  9. }
  10. frameset.attlist =
  11. Core.attrib,
  12. attribute cols { MultiLength.datatype }?,
  13. attribute rows { MultiLength.datatype }?
  14. frame = element frame { frame.attlist }
  15. frame.attlist =
  16. Core.attrib,
  17. attribute longdesc { URI.datatype }?,
  18. attribute src { URI.datatype }?,
  19. attribute frameborder { "1" | "0" }?,
  20. attribute marginwidth { Pixels.datatype }?,
  21. attribute marginheight { Pixels.datatype }?,
  22. attribute noresize { "noresize" }?,
  23. attribute scrolling { "yes" | "no" | "auto" }?
  24. noframes = element noframes { noframes.attlist, body }
  25. noframes.attlist = Common.attrib