blob: a1f1568dfeacb4355523975b466e96cf932c8d84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!-- ....................................................................... -->
<!-- SVG 1.1 Container Attribute Module .................................... -->
<!-- file: svg-container-attrib.mod
This is SVG, a language for describing two-dimensional graphics in XML.
Copyright 2001, 2002, 2011 W3C (MIT, INRIA, Keio), All Rights Reserved.
Revision: $Id: svg-container-attrib.mod,v 1.15 2011/07/08 03:20:21 cmccorma Exp $
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES SVG 1.1 Container Attribute//EN"
SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-container-attrib.mod"
....................................................................... -->
<!-- Container Attribute
enable-background
This module defines the Container attribute set.
-->
<!-- 'enable-background' property/attribute value (e.g., 'new', 'accumulate') -->
<!ENTITY % EnableBackgroundValue.datatype "CDATA" >
<!ENTITY % SVG.enable-background.attrib
"enable-background %EnableBackgroundValue.datatype; #IMPLIED"
>
<!ENTITY % SVG.Container.extra.attrib "" >
<!ENTITY % SVG.Container.attrib
"%SVG.enable-background.attrib;
%SVG.Container.extra.attrib;"
>
<!-- end of svg-container-attrib.mod -->
|