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
|
<!-- ....................................................................... -->
<!-- SVG 1.1 Document Events Attribute Module .............................. -->
<!-- file: svg-docevents-attrib.mod
This is SVG, a language for describing two-dimensional graphics in XML.
Copyright 2001, 2002, 2011 W3C (MIT, INRIA, Keio), All Rights Reserved.
Revision: $Id: svg-docevents-attrib.mod,v 1.15 2011/07/08 03:20:21 cmccorma Exp $
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES SVG 1.1 Document Events Attribute//EN"
SYSTEM "http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod"
....................................................................... -->
<!-- Document Events Attribute
onunload, onabort, onerror, onresize, onscroll, onzoom
This module defines the DocumentEvents attribute set.
-->
<!ENTITY % SVG.onunload.attrib
"onunload %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.onabort.attrib
"onabort %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.onerror.attrib
"onerror %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.onresize.attrib
"onresize %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.onscroll.attrib
"onscroll %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.onzoom.attrib
"onzoom %Script.datatype; #IMPLIED"
>
<!ENTITY % SVG.DocumentEvents.extra.attrib "" >
<!ENTITY % 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;"
>
<!-- end of svg-docevents-attrib.mod -->
|