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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/svglist-immutable.html

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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/dom/svglist-immutable.html
diff --git a/third_party/WebKit/LayoutTests/svg/dom/svglist-immutable.html b/third_party/WebKit/LayoutTests/svg/dom/svglist-immutable.html
index 9cdba100ab2a93c87c72ab5ce923a182b2c8ccbe..483a9697396ba4dc35c24be3f82f8aea7443ada4 100644
--- a/third_party/WebKit/LayoutTests/svg/dom/svglist-immutable.html
+++ b/third_party/WebKit/LayoutTests/svg/dom/svglist-immutable.html
@@ -6,10 +6,6 @@
var root = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
[
{
- element: 'path', attr: 'd', value: 'M0,0l10,10', listName: 'SVGPathSegList',
- accessor: function(elm) { return elm.animatedPathSegList; },
- constructItem: function(elm) { return elm.createSVGPathSegLinetoAbs(20, 20); }
- }, {
element: 'polygon', attr: 'points', value: '0,0 10,10', listName: 'SVGPointList',
accessor: function(elm) { return elm.animatedPoints; },
constructItem: function(elm) { return root.createSVGPoint(); }

Powered by Google App Engine
This is Rietveld 408576698