]> source.dussan.org Git - svg.js.git/commitdiff
format fixture svg and remove redundant css (use fixture.css instead)
authordotnetCarpenter <jon.ronnenberg@gmail.com>
Wed, 26 Apr 2017 23:39:57 +0000 (01:39 +0200)
committerdotnetCarpenter <jon.ronnenberg@gmail.com>
Wed, 26 Apr 2017 23:39:57 +0000 (01:39 +0200)
spec/SpecRunner.html
spec/fixtures/fixture.svg

index 735b4c08f2d02fb1320b15f82950652e9f86c9a8..0895a88ed9f52a5b52d155808b3b6778c3e11e03 100644 (file)
@@ -2,7 +2,7 @@
 <html>
 <head>
   <meta charset="utf-8">
-  <title>Jasmine Spec Runner v2.5.2</title>
+  <title>SVG.js - Jasmine Spec Runner v2.6.0</title>
 
   <link rel="shortcut icon" type="image/png" href="lib/jasmine-2.6.0/jasmine_favicon.png">
   <link rel="stylesheet" href="lib/jasmine-2.6.0/jasmine.css">
   <script src="lib/jasmine-2.6.0/jasmine-html.js"></script>
   <script src="lib/jasmine-2.6.0/boot.js"></script>
 
-  <style type="text/css" media="screen">
-    #drawing {
-      width: 500px;
-      height: 500px;
-      position: fixed;
-      z-index: -1;
-    }
-  </style>
+  <link rel="stylesheet" href="fixtures/fixture.css">
 
   <!-- include source files here... -->
   <script src="../dist/svg.js" charset="utf-8"></script>
@@ -26,6 +19,7 @@
 </head>
 
 <body>
+
   <svg height="0" width="0" id="inlineSVG">
     <defs>
       <linearGradient>
@@ -54,9 +48,9 @@
     </g>
     <polygon points="200,10 250,190 160,210" />
     <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" />
-    
   </svg>
 
+
   <!-- include spec files here... -->
   <script src="spec/adopter.js"></script>
   <script src="spec/arrange.js"></script>
index f910dc128deee27e85f2913183e6810f4a95d379..5154267c92243f7f86a9777e1602fc489f72d0fe 100644 (file)
@@ -1,29 +1,29 @@
 <svg height="0" width="0" id="inlineSVG">
-    <defs>
-      <linearGradient>
-        <stop offset="5%"  stop-color="green"/>
-        <stop offset="95%" stop-color="gold"/>
-      </linearGradient>
-      <radialGradient>
-        <stop offset="10%" stop-color="gold"/>
-        <stop offset="95%" stop-color="green"/>
-      </radialGradient>
-    </defs>
-       <desc>Some description</desc>
-       <path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" />
-       <path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" />
-       <path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" />
-       <path d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" />
-       <g stroke="black" stroke-width="3" fill="black" id="pointGroup">
-               <circle id="pointA" cx="100" cy="350" r="3" />
-               <circle id="pointB" cx="250" cy="50" r="3" />
-               <circle id="pointC" cx="400" cy="350" r="3" />
-       </g>
-       <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle" id="labelGroup">
-               <text x="100" y="350" dx="-30">A</text>
-               <text x="250" y="50" dy="-10">B</text>
-               <text x="400" y="350" dx="30">C</text>
-       </g>
-       <polygon points="200,10 250,190 160,210" />
-       <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" />
-</svg>
\ No newline at end of file
+  <defs>
+    <linearGradient>
+      <stop offset="5%"  stop-color="green"/>
+      <stop offset="95%" stop-color="gold"/>
+    </linearGradient>
+    <radialGradient>
+      <stop offset="10%" stop-color="gold"/>
+      <stop offset="95%" stop-color="green"/>
+    </radialGradient>
+  </defs>
+  <desc>Some description</desc>
+  <path id="lineAB" d="M 100 350 l 150 -300" stroke="red" stroke-width="3" fill="none" />
+  <path id="lineBC" d="M 250 50 l 150 300" stroke="red" stroke-width="3" fill="none" />
+  <path d="M 175 200 l 150 0" stroke="green" stroke-width="3" fill="none" />
+  <path d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" />
+  <g stroke="black" stroke-width="3" fill="black" id="pointGroup">
+    <circle id="pointA" cx="100" cy="350" r="3" />
+    <circle id="pointB" cx="250" cy="50" r="3" />
+    <circle id="pointC" cx="400" cy="350" r="3" />
+  </g>
+  <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle" id="labelGroup">
+    <text x="100" y="350" dx="-30">A</text>
+    <text x="250" y="50" dy="-10">B</text>
+    <text x="400" y="350" dx="30">C</text>
+  </g>
+  <polygon points="200,10 250,190 160,210" />
+  <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" />
+</svg>