Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Resources/www.w3.org/Graphics.SVG.1.1.DTD/svg-graphics-attrib.mod @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 2.4 KB
Line 
1<!-- ....................................................................... -->
2<!-- SVG 1.1 Graphics Attribute Module ..................................... -->
3<!-- file: svg-graphics-attrib.mod
4
5     This is SVG, a language for describing two-dimensional graphics in XML.
6     Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
7     Revision: $Id: svg-graphics-attrib.mod,v 1.2 2002/04/20 18:07:43 fujisawa Exp $
8
9     This DTD module is identified by the PUBLIC and SYSTEM identifiers:
10
11        PUBLIC "-//W3C//ENTITIES SVG 1.1 Graphics Attribute//EN"
12        SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphics-attrib.mod"
13
14     ....................................................................... -->
15
16<!-- Graphics Attribute
17
18        display, image-rendering, pointer-events, shape-rendering,
19        text-rendering, visibility
20
21     This module defines the Graphics attribute set.
22-->
23
24<!ENTITY % SVG.display.attrib
25    "display ( inline | block | list-item | run-in | compact | marker |
26               table | inline-table | table-row-group | table-header-group |
27               table-footer-group | table-row | table-column-group |
28               table-column | table-cell | table-caption | none | inherit )
29               #IMPLIED"
30>
31
32<!ENTITY % SVG.image-rendering.attrib
33    "image-rendering ( auto | optimizeSpeed | optimizeQuality | inherit )
34                       #IMPLIED"
35>
36
37<!ENTITY % SVG.pointer-events.attrib
38    "pointer-events ( visiblePainted | visibleFill | visibleStroke | visible |
39                      painted | fill | stroke | all | none | inherit )
40                      #IMPLIED"
41>
42
43<!ENTITY % SVG.shape-rendering.attrib
44    "shape-rendering ( auto | optimizeSpeed | crispEdges | geometricPrecision |
45                       inherit ) #IMPLIED"
46>
47
48<!ENTITY % SVG.text-rendering.attrib
49    "text-rendering ( auto | optimizeSpeed | optimizeLegibility |
50                      geometricPrecision | inherit ) #IMPLIED"
51>
52
53<!ENTITY % SVG.visibility.attrib
54    "visibility ( visible | hidden | inherit ) #IMPLIED"
55>
56
57<!ENTITY % SVG.Graphics.extra.attrib "" >
58
59<!ENTITY % SVG.Graphics.attrib
60    "%SVG.display.attrib;
61     %SVG.image-rendering.attrib;
62     %SVG.pointer-events.attrib;
63     %SVG.shape-rendering.attrib;
64     %SVG.text-rendering.attrib;
65     %SVG.visibility.attrib;
66     %SVG.Graphics.extra.attrib;"
67>
68
69<!-- end of svg-graphics-attrib.mod -->
Note: See TracBrowser for help on using the repository browser.