declare smobs in alloc.c
[bpt/emacs.git] / etc / schema / xhtml-frames.rnc
CommitLineData
8cd39fb3
MH
1# Frames Module
2
3include "xhtml-struct.rnc" {
4 html = element html { html.attlist, head, frameset }
5}
6frameset =
7 element frameset {
8 frameset.attlist,
9 ((frameset | frame)+ & noframes?)
10 }
11frameset.attlist =
12 Core.attrib,
13 attribute cols { MultiLength.datatype }?,
14 attribute rows { MultiLength.datatype }?
15frame = element frame { frame.attlist }
16frame.attlist =
17 Core.attrib,
18 attribute longdesc { URI.datatype }?,
19 attribute src { URI.datatype }?,
20 attribute frameborder { "1" | "0" }?,
21 attribute marginwidth { Pixels.datatype }?,
22 attribute marginheight { Pixels.datatype }?,
23 attribute noresize { "noresize" }?,
24 attribute scrolling { "yes" | "no" | "auto" }?
25noframes = element noframes { noframes.attlist, body }
26noframes.attlist = Common.attrib