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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
namespace ns1 = "http://www.w3.org/2000/svg"
##
## SVG 1.1 Graphics Attribute Module
## file: svg-graphics-attrib.rng
##
## This is SVG, a language for describing two-dimensional graphics in XML.
## Copyright 2001, 2002 W3C (MIT, INRIA, Keio), All Rights Reserved.
##
## $Id: svg-graphics-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
##
##
## Graphics Attribute
##
## display, image-rendering, pointer-events, shape-rendering,
## text-rendering, visibility
##
## This module defines the Graphics attribute set.
##
[ xml:lang = "en" ]
grammar {
include "svg-basic-graphics-attrib.rnc" inherit = ns1
SVG.image-rendering.attrib =
attribute image-rendering {
"auto" | "optimizeSpeed" | "optimizeQuality" | "inherit"
}?
SVG.pointer-events.attrib =
attribute pointer-events {
"visiblePainted"
| "visibleFill"
| "visibleStroke"
| "visible"
| "painted"
| "fill"
| "stroke"
| "all"
| "none"
| "inherit"
}?
SVG.shape-rendering.attrib =
attribute shape-rendering {
"auto"
| "optimizeSpeed"
| "crispEdges"
| "geometricPrecision"
| "inherit"
}?
SVG.text-rendering.attrib =
attribute text-rendering {
"auto"
| "optimizeSpeed"
| "optimizeLegibility"
| "geometricPrecision"
| "inherit"
}?
SVG.Graphics.attrib &=
SVG.image-rendering.attrib,
SVG.pointer-events.attrib,
SVG.shape-rendering.attrib,
SVG.text-rendering.attrib
}
|