-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSVGEventType.hx
75 lines (60 loc) · 2.54 KB
/
SVGEventType.hx
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
65
66
67
68
69
70
71
72
73
74
package eventtypes;
enum abstract SVGEventType(String) to String {
/**
The SVGAbort event is fired when page loading is stopped before an
element has been allowed to load completely.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGAbort
*/
var Abort = 'SVGAbort';
/**
The SVGError event is fired when an element does not load properly or
when an error occurs during script execution.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGError
*/
var Error = 'SVGError';
/**
The SVGLoad event is fired when the user agent has fully parsed the
element and its descendants and is ready to act appropriately upon that
element, such as being ready to render the element to the target
device. Referenced external resources that are required must be loaded,
parsed and ready to render before the event is triggered. Optional
external resources are not required to be ready for the event to be
triggered.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGLoad
*/
var Load = 'SVGLoad';
/**
The SVGResize event is fired when a document view is being resized.
This event is only applicable to outermost SVG elements and is
dispatched after the resize operation has taken place. The target of
the event is the <svg> element.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGResize
*/
var Resize = 'SVGResize';
/**
The SVGScroll event is fired when a document view is being shifted
along the X or Y or both axis, either through a direct user interaction
or any change on the currentTranslate property available on <svg>
interface. This event is only applicable to outermost svg elements and
is dispatched after the shift modification has taken place. The target
of the event is the <svg> element.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGScroll
*/
var Scroll = 'SVGScroll';
/**
The SVGUnload event is fired when the DOM implementation removes a
document from a window or frame.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGUnload
*/
var Unload = 'SVGUnload';
/**
The SVGZoom event is fired when the zoom level of a document view is
being changed, either through a direct user interaction or any change
to the currentScale property available on the <svg> element interface.
This event is only applicable to outermost svg elements and is
dispatched after the zoom level modification has taken place. The
target of the event is the <svg> element.
See https://developer.mozilla.org/en-US/docs/Web/Events/SVGZoom
*/
var Zoom = 'SVGZoom';
}