Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: client/html/generated/html/frog/SVGPreserveAspectRatio.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _SVGPreserveAspectRatioImpl implements SVGPreserveAspectRatio native "*SVG PreserveAspectRatio" {
3
4 static final int SVG_MEETORSLICE_MEET = 1;
5
6 static final int SVG_MEETORSLICE_SLICE = 2;
7
8 static final int SVG_MEETORSLICE_UNKNOWN = 0;
9
10 static final int SVG_PRESERVEASPECTRATIO_NONE = 1;
11
12 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
13
14 static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10;
15
16 static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7;
17
18 static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4;
19
20 static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9;
21
22 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
23
24 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
25
26 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
27
28 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
29
30 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
31
32 int align;
33
34 int meetOrSlice;
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698