Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More expectation updates. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg
diff --git a/third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg b/third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg
index f9c4fcbe91c7594690729fbd31038b853f137b61..4564d73043bb30e95ab8789ce84762a2db49792e 100644
--- a/third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg
+++ b/third_party/WebKit/LayoutTests/svg/custom/js-svg-constructors.svg
@@ -122,26 +122,26 @@
expect("SVGMarkerElement.SVG_MARKER_ORIENT_AUTO", 1);
expect("SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE", 2);
- expect("SVGPathSeg.PATHSEG_UNKNOWN", 0);
- expect("SVGPathSeg.PATHSEG_CLOSEPATH", 1);
- expect("SVGPathSeg.PATHSEG_MOVETO_ABS", 2);
- expect("SVGPathSeg.PATHSEG_MOVETO_REL", 3);
- expect("SVGPathSeg.PATHSEG_LINETO_ABS", 4);
- expect("SVGPathSeg.PATHSEG_LINETO_REL", 5);
- expect("SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS", 6);
- expect("SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL", 7);
- expect("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS", 8);
- expect("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL", 9);
- expect("SVGPathSeg.PATHSEG_ARC_ABS", 10);
- expect("SVGPathSeg.PATHSEG_ARC_REL", 11);
- expect("SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS", 12);
- expect("SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL", 13);
- expect("SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS", 14);
- expect("SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL", 15);
- expect("SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS", 16);
- expect("SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL", 17);
- expect("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS", 18);
- expect("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL", 19);
+ expect_failure("SVGPathSeg.PATHSEG_UNKNOWN", 0);
pdr. 2015/10/23 04:40:55 Just remove these? (similar for js-svg-constructor
fs 2015/10/23 09:12:32 Sure. Done (w/ collateral damage in the form of re
+ expect_failure("SVGPathSeg.PATHSEG_CLOSEPATH", 1);
+ expect_failure("SVGPathSeg.PATHSEG_MOVETO_ABS", 2);
+ expect_failure("SVGPathSeg.PATHSEG_MOVETO_REL", 3);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_ABS", 4);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_REL", 5);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS", 6);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL", 7);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS", 8);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL", 9);
+ expect_failure("SVGPathSeg.PATHSEG_ARC_ABS", 10);
+ expect_failure("SVGPathSeg.PATHSEG_ARC_REL", 11);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS", 12);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL", 13);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS", 14);
+ expect_failure("SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL", 15);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS", 16);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL", 17);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS", 18);
+ expect_failure("SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL", 19);
expect("SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_UNKNOWN", 0);
expect("SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_NONE", 1);

Powered by Google App Engine
This is Rietveld 408576698