Lines Matching full:path
4 function getViewBox(path) {
5 let bounds = path.getBounds();
35 <path stroke=black fill=white stroke-width=0.01 d="${expectedPath.toSVGString()}"></path>
39 <path stroke=black fill=white stroke-width=0.01 d="${actualPath.toSVGString()}"></path>
168 it('simplifies a path with .simplify() and matches what we see from C++', function(done) {
183 let path = PathKit.FromCmds(test.path);
184 expect(path).not.toBeNull(`path1 error when loading cmds '${test.path}'`);
185 path.setFillType(getFillType(test.fillType));
187 let simplified = path.simplify();
213 // simplified === path, so we only have to delete one.
214 path.delete();