summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc47
1 files changed, 47 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc
new file mode 100644
index 00000000000..e5828f3dab8
--- /dev/null
+++ b/Master/texmf-dist/source/latex/stex/schema/rnc/LaTeXML/svg-graphevents-attrib.rnc
@@ -0,0 +1,47 @@
+namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
+
+
+##
+## SVG 1.1 Graphical Element Events Attribute Module
+## file: svg-graphevents-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-graphevents-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
+##
+
+##
+## Graphical Element Events Attribute
+##
+## onfocusin, onfocusout, onactivate, onclick, onmousedown, onmouseup,
+## onmouseover, onmousemove, onmouseout, onload
+##
+## This module defines the GraphicalEvents attribute set.
+##
+[ xml:lang = "en" ]
+grammar {
+ SVG.onfocusin.attrib = attribute onfocusin { Script.datatype }?
+ SVG.onfocusout.attrib = attribute onfocusout { Script.datatype }?
+ SVG.onactivate.attrib = attribute onactivate { Script.datatype }?
+ SVG.onclick.attrib = attribute onclick { Script.datatype }?
+ SVG.onmousedown.attrib = attribute onmousedown { Script.datatype }?
+ SVG.onmouseup.attrib = attribute onmouseup { Script.datatype }?
+ SVG.onmouseover.attrib = attribute onmouseover { Script.datatype }?
+ SVG.onmousemove.attrib = attribute onmousemove { Script.datatype }?
+ SVG.onmouseout.attrib = attribute onmouseout { Script.datatype }?
+ SVG.onload.attrib &= attribute onload { Script.datatype }?
+ SVG.GraphicalEvents.extra.attrib = empty
+ SVG.GraphicalEvents.attrib &=
+ SVG.onfocusin.attrib,
+ SVG.onfocusout.attrib,
+ SVG.onactivate.attrib,
+ SVG.onclick.attrib,
+ SVG.onmousedown.attrib,
+ SVG.onmouseup.attrib,
+ SVG.onmouseover.attrib,
+ SVG.onmousemove.attrib,
+ SVG.onmouseout.attrib,
+ SVG.onload.attrib,
+ SVG.GraphicalEvents.extra.attrib
+}