annotate etc/schema/xhtml-iframe.rnc @ 92237:ce06567a933d
* dispextern.h (face_at_buffer_position, face_for_overlay_string)
(face_at_string_position):
* xfaces.c (face_at_buffer_position, face_for_overlay_string)
(face_at_string_position):
* xdisp.c (display_string, next_overlay_change):
* buffer.h (overlays_at):
* buffer.c (overlays_at): Use EMACS_INT for buffer positions.
Update callers.
author |
Stefan Monnier <monnier@iro.umontreal.ca> |
date |
Tue, 26 Feb 2008 18:18:05 +0000 |
parents |
38f93f3d00a2 |
children |
|
rev |
line source |
86361
|
1 # Iframe Module
|
|
2
|
|
3 iframe = element iframe { iframe.attlist, Flow.model }
|
|
4 iframe.attlist =
|
|
5 Core.attrib,
|
|
6 attribute longdesc { URI.datatype }?,
|
|
7 attribute src { URI.datatype }?,
|
|
8 attribute frameborder { "1" | "0" }?,
|
|
9 attribute width { Length.datatype }?,
|
|
10 attribute height { Length.datatype }?,
|
|
11 attribute marginwidth { Pixels.datatype }?,
|
|
12 attribute marginheight { Pixels.datatype }?,
|
|
13 attribute scrolling { "yes" | "no" | "auto" }?
|
|
14 Inline.class |= iframe
|