blob: 164414fe0fc4ff3c76028d02b136ca6236ea0150 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xml:lang="en" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0">
<a:documentation>
SVG 1.1 Animation Events Attribute Module
file: svg-animevents-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-animevents-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
</a:documentation>
<a:documentation>
Animation Events Attribute
onbegin, onend, onrepeat, onload
This module defines the AnimationEvents attribute set.
</a:documentation>
<define name="SVG.onbegin.attrib">
<optional>
<attribute name="onbegin">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onend.attrib">
<optional>
<attribute name="onend">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.onrepeat.attrib">
<optional>
<attribute name="onrepeat">
<ref name="Script.datatype"/>
</attribute>
</optional>
</define>
<define name="SVG.AnimationEvents.extra.attrib">
<empty/>
</define>
<define name="SVG.AnimationEvents.attrib" combine="interleave">
<ref name="SVG.onbegin.attrib"/>
<ref name="SVG.onend.attrib"/>
<ref name="SVG.onrepeat.attrib"/>
<ref name="SVG.onload.attrib"/>
<ref name="SVG.AnimationEvents.extra.attrib"/>
</define>
</grammar>
|