annotate etc/schema/xhtml-iframe.rnc @ 96556:0af6d3c9fb7c
(fontset_compare_rfontdef): Fix plus/minus.
(reorder_font_vector): Change the arg preferred_family to font.
Prefer the spec matching with font.
(fontset_get_font_group): New function.
(fontset_find_font): Change the format of an element of a realized
fontset. Use fontset_get_font_group.
(fontset_font): Try the current fontset, the default fontset, the
fallbacks of the current fonset, and the fallbacks of the default
fontset in this order.
(face_for_char): Delete the shortcut to use the current font.
(fontset_from_font): Don't set fonts for Latin in the fontset.
author |
Kenichi Handa <handa@m17n.org> |
date |
Wed, 09 Jul 2008 00:29:03 +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
|