| <?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 line 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><line> attributes 'onload'</title> |
| |
| <text x="50%" y="45" class="title"><line> attributes in 'onload'</text> |
| |
| <script type="text/ecmascript"> |
| |
| function initLine(evt, x1, y1, x2, y2) { |
| var elt = evt.target; |
| elt.setAttribute("x1", x1) |
| elt.setAttribute("y1", y1) |
| elt.setAttribute("x2", x2) |
| elt.setAttribute("y2", y2) |
| } |
| |
| </script> |
| |
| <g id="test-content"> |
| |
| <line style="stroke:orange; stroke-width:4" |
| onload="initLine(evt, 50, 80, 100, 180)" /> |
| |
| <line style="stroke:crimson; stroke-width:4" |
| onload="initLine(evt, 200, 80, 150, 180)" /> |
| |
| <line style="stroke:gold; stroke-width:4" |
| onload="initLine(evt, 250, 80, 250, 180)" /> |
| |
| <line style="stroke:#eee; stroke-width:4" |
| onload="initLine(evt, 300, 140, 400, 140)" /> |
| |
| |
| <line style="stroke:orange; stroke-width:4" |
| onload="initLine(evt, 50, 250, 100, 350)" /> |
| |
| <line style="stroke:crimson; stroke-width:4" |
| onload="initLine(evt, 200, 250, 150, 350)" /> |
| |
| <line style="stroke:gold; stroke-width:4" |
| onload="initLine(evt, 250, 250, 250, 350)" /> |
| |
| <line style="stroke:#eee; stroke-width:4" |
| onload="initLine(evt, 300, 300, 400, 300)" /> |
| |
| |
| <g style="fill:black; stroke:none; text-anchor:middle"> |
| <text x="225" y="220" >x1, y1, x2, y2</text> |
| <text x="225" y="382" >x1, y1, x2, y2 (units and %)</text> |
| </g> |
| </g> |
| </svg> |