<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:svg="http://www.w3.org/2000/svg"
  xmlns:html="http://www.w3.org/1999/xhtml"
  contextmenu="context_menu"
  onload="init_convexHull(); 
    ">

  <svg:svg id="svg" width="800" height="800" viewBox="-400 -400 800 800">
    <svg:rect id="background" fill="white" x="-350" y="-350" width="700" height="700"/>
  </svg:svg>
  
  
  <script src="../ej-e.js"/>
  <script src="svg-colors.js"/>
  <script src="quicksort.js"/>
  <script src="convex-hull.js"/>
</window>