Lines Matching refs:path
400 const auto* pathElement = dom.getFirstChild(rootElement, "path");
401 REPORTER_ASSERT(reporter, !!pathElement == expect_path, "unexpected path element");
407 // With kConvertTextToPaths_Flag, we emit <path> nodes.
410 // We also use paths in the presence of path effects.
552 const auto* pathElement = dom.getFirstChild(rootElement, "path");
553 REPORTER_ASSERT(reporter, pathElement, "path element not found");
555 // The SVG path to draw the three dots is a complex list of instructions.
556 // To avoid test brittleness, we don't attempt to match the entire path.
558 // dot. If path effects were not being honored, we would expect only one
574 SkPath path;
575 path.moveTo(100, 50);
576 path.lineTo(200, 50);
577 path.lineTo(200, 150);
578 path.close();
580 svgCanvas->drawPath(path, SkPaint());
585 const auto* pathElement = dom.getFirstChild(rootElement, "path");
586 REPORTER_ASSERT(reporter, pathElement, "path element not found");