annotate webapp/src/main/webapp/jquery/jquery-test-svg.html @ 1120:8bd10cd04169

authentication for annotations with password works now. (permissions are still flaky.)
author robcast
date Wed, 07 Nov 2012 18:09:57 +0100
parents 6407c33355a2
children bd90fdfd55f7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
1 <?xml version="1.0" ?>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1055
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
3 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" >
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
4 <head>
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
5 <title>jquery.digilib.svg.js test</title>
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
6
947
5bde01bcfb16 button plugin works now.
robcast
parents: 903
diff changeset
7 <script type="text/javascript" src="jquery.js"></script>
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
8 <script type="text/javascript" src="jquery.cookie.js"></script>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
9 <script type="text/javascript" src="jquery.digilib.js"></script>
788
ddb28f6b066a make plugins available to other plugins
hertzhaft
parents: 779
diff changeset
10 <script type="text/javascript" src="jquery.digilib.geometry.js"></script>
1051
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
11 <script type="text/javascript" src="jquery.digilib.arrows.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
12 <script type="text/javascript" src="jquery.range.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
13 <link rel="stylesheet" type="text/css" href="jquery.range.css" />
947
5bde01bcfb16 button plugin works now.
robcast
parents: 903
diff changeset
14 <script type="text/javascript" src="jquery.digilib.buttons.js"></script>
1051
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
15 <script type="text/javascript" src="jquery.digilib.dialogs.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
16 <script type="text/javascript" src="jquery.digilib.sliders.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
17 <script type="text/javascript" src="jquery.digilib.birdseye.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
18 <script type="text/javascript" src="jquery.digilib.marks.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
19 <script type="text/javascript" src="jquery.digilib.regions.js"></script>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
20 <link rel="stylesheet" type="text/css" href="jquery.digilib.css" />
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
21 <script type="text/javascript" src="svg/jquery.svg.js"></script>
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
22 <script type="text/javascript" src="jquery.digilib.svg.js"></script>
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
23 <link rel="stylesheet" type="text/css" href="jquery.digilib.svg.css" />
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
24
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
25 <script type="text/javascript">
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
26 $(document).ready(function(){
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
27 var opts = {
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
28 interactionMode : 'fullscreen',
1051
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
29 showRegionNumbers : true
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
30 };
1051
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
31 var $div = $('div#digilib');
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
32 $div.digilib(opts);
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
33 DIGILIB = function (action) {
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
34 return $div.digilib(action);
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
35 };
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
36 });
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
37 </script>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
38 </head>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
39
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
40 <body>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
41
1051
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
42 <div id="digilib">
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
43 <p>digilib doesn't work! Please switch on Javascript or notify the server administrator!</p>
ad769aaea759 adapt digilibSVG plugin to new plugin architecture
hertzhaft
parents: 947
diff changeset
44 <img src="http://digilib.berlios.de/images/digilib-logo-big.png" />
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
45 </div>
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
46
1082
6407c33355a2 reorganising fullscreen buttons directory.
robcast
parents: 1055
diff changeset
47 <a href="javascript: DIGILIB('test')">test</a>
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
48
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
49 <div id="dl_svgdiv">
1055
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
50 <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 1 1">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
51 <g style="stroke-width: 0.005; fill: none">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
52 <rect x="0.0" y="0.0" width="1.0" height="1.0" style="stroke: red" />
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
53 <rect x="0.1" y="0.1" width="0.8" height="0.8" style="stroke: orange" />
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
54 <rect x="0.2" y="0.2" width="0.6" height="0.6" style="stroke: yellow" />
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
55 <rect x="0.3" y="0.3" width="0.4" height="0.4" style="stroke: green" />
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
56 <rect x="0.4" y="0.4" width="0.2" height="0.2" style="stroke: cyan" />
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
57 <g style="fill:magenta; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
58 <rect x="0.025" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
59 <rect x="0.125" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
60 <rect x="0.225" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
61 <rect x="0.325" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
62 <rect x="0.425" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
63 <rect x="0.525" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
64 <rect x="0.625" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
65 <rect x="0.725" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
66 <rect x="0.825" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
67 <rect x="0.925" y="0.025" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
68 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
69 <g style="fill:blue; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
70 <rect x="0.025" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
71 <rect x="0.125" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
72 <rect x="0.225" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
73 <rect x="0.325" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
74 <rect x="0.425" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
75 <rect x="0.525" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
76 <rect x="0.625" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
77 <rect x="0.725" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
78 <rect x="0.825" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
79 <rect x="0.925" y="0.125" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
80 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
81 <g style="fill:cyan; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
82 <rect x="0.025" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
83 <rect x="0.125" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
84 <rect x="0.225" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
85 <rect x="0.325" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
86 <rect x="0.425" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
87 <rect x="0.525" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
88 <rect x="0.625" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
89 <rect x="0.725" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
90 <rect x="0.825" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
91 <rect x="0.925" y="0.225" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
92 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
93 <g style="fill:green; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
94 <rect x="0.025" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
95 <rect x="0.125" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
96 <rect x="0.225" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
97 <rect x="0.325" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
98 <rect x="0.425" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
99 <rect x="0.525" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
100 <rect x="0.625" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
101 <rect x="0.725" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
102 <rect x="0.825" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
103 <rect x="0.925" y="0.325" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
104 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
105 <g style="fill:yellow; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
106 <rect x="0.025" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
107 <rect x="0.125" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
108 <rect x="0.225" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
109 <rect x="0.325" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
110 <rect x="0.425" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
111 <rect x="0.525" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
112 <rect x="0.625" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
113 <rect x="0.725" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
114 <rect x="0.825" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
115 <rect x="0.925" y="0.425" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
116 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
117 <g style="fill:orange; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
118 <rect x="0.025" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
119 <rect x="0.125" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
120 <rect x="0.225" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
121 <rect x="0.325" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
122 <rect x="0.425" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
123 <rect x="0.525" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
124 <rect x="0.625" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
125 <rect x="0.725" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
126 <rect x="0.825" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
127 <rect x="0.925" y="0.525" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
128 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
129 <g style="fill:red; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
130 <rect x="0.025" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
131 <rect x="0.125" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
132 <rect x="0.225" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
133 <rect x="0.325" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
134 <rect x="0.425" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
135 <rect x="0.525" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
136 <rect x="0.625" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
137 <rect x="0.725" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
138 <rect x="0.825" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
139 <rect x="0.925" y="0.625" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
140 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
141 <g style="fill:magenta; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
142 <rect x="0.025" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
143 <rect x="0.125" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
144 <rect x="0.225" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
145 <rect x="0.325" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
146 <rect x="0.425" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
147 <rect x="0.525" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
148 <rect x="0.625" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
149 <rect x="0.725" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
150 <rect x="0.825" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
151 <rect x="0.925" y="0.725" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
152 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
153 <g style="fill:blue; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
154 <rect x="0.025" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
155 <rect x="0.125" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
156 <rect x="0.225" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
157 <rect x="0.325" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
158 <rect x="0.425" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
159 <rect x="0.525" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
160 <rect x="0.625" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
161 <rect x="0.725" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
162 <rect x="0.825" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
163 <rect x="0.925" y="0.825" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
164 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
165 <g style="fill:darkgrey; stroke:silver; fill-opacity:0.1; stroke-opacity:0.9">
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
166 <rect x="0.025" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
167 <rect x="0.125" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
168 <rect x="0.225" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
169 <rect x="0.325" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
170 <rect x="0.425" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
171 <rect x="0.525" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
172 <rect x="0.625" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
173 <rect x="0.725" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
174 <rect x="0.825" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
175 <rect x="0.925" y="0.925" width="0.05" height="0.05"/>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
176 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
177 </g>
f6292c6ec440 experiments with inline svg and viewbox
hertzhaft
parents: 1054
diff changeset
178 </svg>
1054
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
179 </div>
6488318df736 stuff for svg testing
hertzhaft
parents: 1051
diff changeset
180
778
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
181 </body>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
182 </html>
f8235c42f4a0 more preparations for SVG measuring tool
hertzhaft
parents:
diff changeset
183