From 5a1c51ad10871e9fef605d75a7b3e75924307741 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Tue, 3 Dec 2024 21:00:11 +0530 Subject: [PATCH 01/13] MDN Feature Pages for SVGAnimatedLengthList --- .../svganimatedlengthlist/animval/index.md | 33 +++++++++++++++++++ .../svganimatedlengthlist/baseval/index.md | 32 ++++++++++++++++++ .../web/api/svganimatedlengthlist/index.md | 4 +-- 3 files changed, 67 insertions(+), 2 deletions(-) create mode 100644 files/en-us/web/api/svganimatedlengthlist/animval/index.md create mode 100644 files/en-us/web/api/svganimatedlengthlist/baseval/index.md diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md new file mode 100644 index 000000000000000..d72b932e77b6d86 --- /dev/null +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -0,0 +1,33 @@ +--- +title: "SVGAnimatedLengthList: animVal property" +short-title: animVal +slug: Web/API/SVGAnimatedLengthList/animVal +page-type: web-api-instance-property +browser-compat: api.SVGAnimatedLengthList.animVal +--- + +{{APIRef("SVG")}} + +The **`SVGAnimatedLengthList.animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of ``, ``, or `` values. + +This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. + +## Value + +An {{domxref("SVGLengthList")}} object representing the animated value of the attribute. The list contains one or more items corresponding to the individual lengths, percentages, or numbers specified in the attribute. + +- If the attribute is being animated, `animVal` reflects the animation's progress in real time. +- If the attribute is not animated, `animVal` is identical to {{domxref("SVGAnimatedLengthList.baseVal")}}. + +## Specifications + +{{Specifications}} + +## Browser compatibility + +{{Compat}} + +## See also + +- {{domxref("SVGAnimatedLengthList")}} +- {{domxref("SVGLengthList")}} diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md new file mode 100644 index 000000000000000..c14a6f7fb998871 --- /dev/null +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -0,0 +1,32 @@ +--- +title: "SVGAnimatedLengthList: baseVal property" +short-title: baseVal +slug: Web/API/SVGAnimatedLengthList/baseVal +page-type: web-api-instance-property +browser-compat: api.SVGAnimatedLengthList.baseVal +--- + +{{APIRef("SVG")}} + +The **`SVGAnimatedLengthList.baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of ``, ``, or `` values. + +This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. + +## Value + +An {{domxref("SVGLengthList")}} object representing the base value of the attribute. The list contains one or more items corresponding to the individual lengths, percentages, or numbers specified in the attribute. + +- Changes to the `SVGLengthList` reflected by `baseVal` directly update the attribute on the SVG element. + +## Specifications + +{{Specifications}} + +## Browser compatibility + +{{Compat}} + +## See also + +- {{domxref("SVGAnimatedLengthList")}} +- {{domxref("SVGLengthList")}} diff --git a/files/en-us/web/api/svganimatedlengthlist/index.md b/files/en-us/web/api/svganimatedlengthlist/index.md index 645d5579ca9193c..8bdaf6403a4410e 100644 --- a/files/en-us/web/api/svganimatedlengthlist/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/index.md @@ -62,14 +62,14 @@ The `SVGAnimatedLengthList` interface is used for attributes of type {{ domxref( - baseVal + {{domxref("SVGAnimatedLengthList.baseVal")}} {{ domxref("SVGLengthList") }} The base value of the given attribute before applying any animations. - animVal + {{domxref("SVGAnimatedLengthList.animVal")}} {{ domxref("SVGLengthList") }} A read only {{ domxref("SVGLengthList") }} representing the From f90338422fac29c2e9f825955a396167eae6c524 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Thu, 5 Dec 2024 05:48:18 +0530 Subject: [PATCH 02/13] add: link to content types --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 2 +- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index d72b932e77b6d86..88b66b47ddb4438 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -8,7 +8,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal {{APIRef("SVG")}} -The **`SVGAnimatedLengthList.animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of ``, ``, or `` values. +The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index c14a6f7fb998871..aa58122bf65737f 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -8,7 +8,7 @@ browser-compat: api.SVGAnimatedLengthList.baseVal {{APIRef("SVG")}} -The **`SVGAnimatedLengthList.baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of ``, ``, or `` values. +The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. From 6798500ba90242be574c8d9836494431a6fbc2f0 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Fri, 6 Dec 2024 13:01:43 +0530 Subject: [PATCH 03/13] fix: see also section with relevant links --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 4 +++- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 4 +++- files/en-us/web/api/svganimatedlengthlist/index.md | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 88b66b47ddb4438..97333fb7daf4eb4 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -29,5 +29,7 @@ An {{domxref("SVGLengthList")}} object representing the animated value of the at ## See also -- {{domxref("SVGAnimatedLengthList")}} +- [``](/en-US/docs/Web/SVG/Content_type#length) +- [``](/en-US/docs/Web/SVG/Content_type#percentage) +- [``](/en-US/docs/Web/SVG/Content_type#number) - {{domxref("SVGLengthList")}} diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index aa58122bf65737f..2b020c02e93057b 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -28,5 +28,7 @@ An {{domxref("SVGLengthList")}} object representing the base value of the attrib ## See also -- {{domxref("SVGAnimatedLengthList")}} +- [``](/en-US/docs/Web/SVG/Content_type#length) +- [``](/en-US/docs/Web/SVG/Content_type#percentage) +- [``](/en-US/docs/Web/SVG/Content_type#number) - {{domxref("SVGLengthList")}} diff --git a/files/en-us/web/api/svganimatedlengthlist/index.md b/files/en-us/web/api/svganimatedlengthlist/index.md index 8bdaf6403a4410e..95554d4f9a7088d 100644 --- a/files/en-us/web/api/svganimatedlengthlist/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/index.md @@ -62,14 +62,14 @@ The `SVGAnimatedLengthList` interface is used for attributes of type {{ domxref( - {{domxref("SVGAnimatedLengthList.baseVal")}} + {{domxref("SVGAnimatedLengthList.baseVal", "baseVal")}} {{ domxref("SVGLengthList") }} The base value of the given attribute before applying any animations. - {{domxref("SVGAnimatedLengthList.animVal")}} + {{domxref("SVGAnimatedLengthList.animVal", "animVal")}} {{ domxref("SVGLengthList") }} A read only {{ domxref("SVGLengthList") }} representing the From d093ef734d00edc0c443e6749f9163dfb16ee2a1 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Sat, 7 Dec 2024 11:55:37 +0530 Subject: [PATCH 04/13] fix: content --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 3 --- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 97333fb7daf4eb4..720b21996b64728 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -16,9 +16,6 @@ This property provides access to the current animated state of the attribute as An {{domxref("SVGLengthList")}} object representing the animated value of the attribute. The list contains one or more items corresponding to the individual lengths, percentages, or numbers specified in the attribute. -- If the attribute is being animated, `animVal` reflects the animation's progress in real time. -- If the attribute is not animated, `animVal` is identical to {{domxref("SVGAnimatedLengthList.baseVal")}}. - ## Specifications {{Specifications}} diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 2b020c02e93057b..2c21e48b09eeee8 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -14,9 +14,7 @@ This property provides access to the initial or static value of the associated a ## Value -An {{domxref("SVGLengthList")}} object representing the base value of the attribute. The list contains one or more items corresponding to the individual lengths, percentages, or numbers specified in the attribute. - -- Changes to the `SVGLengthList` reflected by `baseVal` directly update the attribute on the SVG element. +An {{domxref("SVGLengthList")}} object representing the base value of the attribute. ## Specifications From ae592bba692ccf1e789e7ab884d3eb72faed5b63 Mon Sep 17 00:00:00 2001 From: Yash Raj Bharti <43868318+yashrajbharti@users.noreply.github.com> Date: Wed, 11 Dec 2024 06:02:08 +0530 Subject: [PATCH 05/13] Update files/en-us/web/api/svganimatedlengthlist/animval/index.md Co-authored-by: Estelle Weyl --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 720b21996b64728..b9c4770a250df35 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,6 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. +Some SVG attributes, like the [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. ## Value From 75417c2d22161c8a1d524bf1fb52936cbe9523c4 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Wed, 11 Dec 2024 06:08:44 +0530 Subject: [PATCH 06/13] add examples --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 3 ++- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index b9c4770a250df35..90bd6656ac8ca56 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,7 +10,8 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. + This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. ## Value diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 2c21e48b09eeee8..6bda6ed2148f25c 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -10,6 +10,8 @@ browser-compat: api.SVGAnimatedLengthList.baseVal The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. + This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. ## Value From 098299e0c37f29601b3bef2ddb5ecfc77183b97b Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Wed, 11 Dec 2024 06:11:17 +0530 Subject: [PATCH 07/13] fix: attributes context --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 2 +- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 90bd6656ac8ca56..3ed84b15248c824 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. +Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 6bda6ed2148f25c..6b42a0a6dc94dee 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.baseVal The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. +Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. From 723af855c09549bd74b296ac42e6c9c97c6ef1a3 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Wed, 11 Dec 2024 06:17:24 +0530 Subject: [PATCH 08/13] fix: syntax issue --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 2 +- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 3ed84b15248c824..514c954044c5d49 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. +Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox`](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 6b42a0a6dc94dee..0fc9848242ff07b 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.baseVal The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [`svg`](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. +Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox`](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. From d591eb222a2209f0763b3e42899f1c5e7da8c11b Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Wed, 11 Dec 2024 06:21:38 +0530 Subject: [PATCH 09/13] removed extra content --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 514c954044c5d49..32ddbf75205fcb8 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -16,7 +16,7 @@ This property provides access to the current animated state of the attribute as ## Value -An {{domxref("SVGLengthList")}} object representing the animated value of the attribute. The list contains one or more items corresponding to the individual lengths, percentages, or numbers specified in the attribute. +An {{domxref("SVGLengthList")}} object representing the animated value of the attribute. ## Specifications From 674bd18fb8ae962a8bfcd50d0747c72aaa9ef2f5 Mon Sep 17 00:00:00 2001 From: Yash Raj Bharti <43868318+yashrajbharti@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:40:12 +0530 Subject: [PATCH 10/13] Update files/en-us/web/api/svganimatedlengthlist/animval/index.md Co-authored-by: Estelle Weyl --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index 32ddbf75205fcb8..cddb5df7b2b30e2 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,9 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox`](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. - -This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. ## Value From 48402f93af327318801246d869f972f2ce49c5a1 Mon Sep 17 00:00:00 2001 From: yashrajbharticybtekk Date: Wed, 11 Dec 2024 22:42:35 +0530 Subject: [PATCH 11/13] content fixes --- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 0fc9848242ff07b..83b83f61a5b487d 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -10,9 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.baseVal The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan), `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/text) element, [`viewBox`](/en-US/docs/Web/SVG/Attribute/viewBox) attribute of the [``](/en-US/docs/Web/SVG/Element/svg) element and the [`values`](/en-US/docs/Web/SVG/Attribute/values#fecolormatrix) attribute of the [`feColorMatrix`](/en-US/docs/Web/SVG/Element/feColorMatrix) element, accept a list of length, percentages, or numbers as a value. - -This property provides access to the initial or static value of the associated attribute as a live {{domxref("SVGLengthList")}} object, which can be modified to update the attribute. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. ## Value From 8321c2522605b7dcda30f9d32b04554e46896ddb Mon Sep 17 00:00:00 2001 From: Yash Raj Bharti <43868318+yashrajbharti@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:10:30 +0530 Subject: [PATCH 12/13] Update files/en-us/web/api/svganimatedlengthlist/animval/index.md Co-authored-by: Estelle Weyl --- files/en-us/web/api/svganimatedlengthlist/animval/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/animval/index.md b/files/en-us/web/api/svganimatedlengthlist/animval/index.md index cddb5df7b2b30e2..c830eec523a87e7 100644 --- a/files/en-us/web/api/svganimatedlengthlist/animval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/animval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.animVal The **`animVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the animated value of an attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) elements, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. ## Value From 7fc3370d83b4be93ccdd42930767b2b7d494220e Mon Sep 17 00:00:00 2001 From: Yash Raj Bharti <43868318+yashrajbharti@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:10:47 +0530 Subject: [PATCH 13/13] Update files/en-us/web/api/svganimatedlengthlist/baseval/index.md Co-authored-by: Estelle Weyl --- files/en-us/web/api/svganimatedlengthlist/baseval/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md index 83b83f61a5b487d..77deb67013436e3 100644 --- a/files/en-us/web/api/svganimatedlengthlist/baseval/index.md +++ b/files/en-us/web/api/svganimatedlengthlist/baseval/index.md @@ -10,7 +10,7 @@ browser-compat: api.SVGAnimatedLengthList.baseVal The **`baseVal`** read-only property of the {{domxref("SVGAnimatedLengthList")}} interface represents the base (non-animated) value of an animatable attribute that accepts a list of [``](/en-US/docs/Web/SVG/Content_type#length), [``](/en-US/docs/Web/SVG/Content_type#percentage), or [``](/en-US/docs/Web/SVG/Content_type#number) values. -Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attribute of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) element, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live {{domxref("SVGLengthList")}} object. +Some SVG attributes, like the `x`, `y`, `dx`, and `dy` attributes of the [``](/en-US/docs/Web/SVG/Element/tspan) and [``](/en-US/docs/Web/SVG/Element/text) elements, accept a list of length, percentages, or numbers as a value. This property reflects the attribute value, in its non-animated state, as a live {{domxref("SVGLengthList")}} object. ## Value