blob: 605bae54ae73bd15f232fb15947e6ec083b87bf3 [file] [log] [blame]
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- ====================================================================== -->
<!-- Modification of a polyline attributes -->
<!-- -->
<!-- @author tkormann@ilog.fr -->
<!-- @version $Id$ -->
<!-- ====================================================================== -->
<?xml-stylesheet type="text/css" href="../../resources/style/test.css" ?>
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
<title>&lt;polyline&gt; attributes 'onload'</title>
<text x="50%" y="45" class="title">&lt;polyline&gt; attributes in 'onload'</text>
<script type="text/ecmascript">
function initPolyline(evt, points) {
var elt = evt.target;
elt.setAttribute("points", points)
}
</script>
<g id="test-content">
<polyline points="0 0" style="stroke:orange; fill: none; stroke-width:4"
onload="initPolyline(evt, '50 100, 100 200, 150 100, 200 200, 250 100, 300 200, 350 100, 400 200')" />
<g style="fill:black; stroke:none; text-anchor:middle">
<text x="225" y="220" >points</text>
</g>
</g>
</svg>