summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc')
-rw-r--r--Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc38
1 files changed, 0 insertions, 38 deletions
diff --git a/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc b/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc
deleted file mode 100644
index a03b011c8d3..00000000000
--- a/Master/texmf-dist/source/latex/stex/schema/rnc/svg/svg-docevents-attrib.rnc
+++ /dev/null
@@ -1,38 +0,0 @@
-namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
-
-
-##
-## SVG 1.1 Document Events Attribute Module
-## file: svg-docevents-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-docevents-attrib.rng,v 1.1 2003/07/15 07:11:10 dean Exp $
-##
-
-##
-## Document Events Attribute
-##
-## onunload, onabort, onerror, onresize, onscroll, onzoom
-##
-## This module defines the DocumentEvents attribute set.
-##
-[ xml:lang = "en" ]
-grammar {
- SVG.onunload.attrib = attribute onunload { Script.datatype }?
- SVG.onabort.attrib = attribute onabort { Script.datatype }?
- SVG.onerror.attrib = attribute onerror { Script.datatype }?
- SVG.onresize.attrib = attribute onresize { Script.datatype }?
- SVG.onscroll.attrib = attribute onscroll { Script.datatype }?
- SVG.onzoom.attrib = attribute onzoom { Script.datatype }?
- SVG.DocumentEvents.extra.attrib = empty
- SVG.DocumentEvents.attrib &=
- SVG.onunload.attrib,
- SVG.onabort.attrib,
- SVG.onerror.attrib,
- SVG.onresize.attrib,
- SVG.onscroll.attrib,
- SVG.onzoom.attrib,
- SVG.DocumentEvents.extra.attrib
-}