1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.htmlunit.javascript.host.svg;
16
17 import org.htmlunit.javascript.HtmlUnitScriptable;
18 import org.htmlunit.javascript.configuration.JsxClass;
19 import org.htmlunit.javascript.configuration.JsxConstant;
20 import org.htmlunit.javascript.configuration.JsxConstructor;
21
22
23
24
25
26
27
28 @JsxClass
29 public class SVGPreserveAspectRatio extends HtmlUnitScriptable {
30
31
32 @JsxConstant
33 public static final int SVG_MEETORSLICE_UNKNOWN = 0;
34
35 @JsxConstant
36 public static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
37
38 @JsxConstant
39 public static final int SVG_MEETORSLICE_MEET = 1;
40
41 @JsxConstant
42 public static final int SVG_PRESERVEASPECTRATIO_NONE = 1;
43
44 @JsxConstant
45 public static final int SVG_MEETORSLICE_SLICE = 2;
46
47 @JsxConstant
48 public static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
49
50 @JsxConstant
51 public static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
52
53 @JsxConstant
54 public static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4;
55
56 @JsxConstant
57 public static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
58
59 @JsxConstant
60 public static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
61
62 @JsxConstant
63 public static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7;
64
65 @JsxConstant
66 public static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
67
68 @JsxConstant
69 public static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9;
70
71 @JsxConstant
72 public static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10;
73
74
75
76
77 @JsxConstructor
78 public void jsConstructor() {
79
80 }
81 }