<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:html="http://www.w3.org/1999/xhtml"
      xmlns:svg="http://www.w3.org/2000/svg">
<head>
  <title>SVG Events</title>
  <link rel="stylesheet" type="text/css" href="style.css" />
  <script src="code.js" />
</head>
<body onload="init();">
  <svg:svg width="500" height="500">
    <svg:rect x="0" y="0" width="500" height="500"/>
    <svg:g id="x3s"/>
  </svg:svg>
  <br />
  <button onclick="check();">
    check
  </button>
  <p id="msg">
    Try to untangle the web.<br />
    You can move the dots with the mouse.<br />
    When you are done, click the 'check' button.
  </p>
  <pre id="foo" />
</body>
</html>
