The StylePropertyMapReadOnly interface of the the CSS Typed Object
API provides a read-only representation of a CSS declaration
that is an alternative to web.cssdom.CSSStyleDeclaration
. Retrieve
instance of this interface using Element.computedStyleMap()
.
The StylePropertyMapReadOnly interface of the the CSS Typed Object API provides a read-only representation of a CSS declaration that is an alternative to `web.cssdom.CSSStyleDeclaration`. Retrieve instance of this interface using `Element.computedStyleMap()`.
(entries this)
Method.
[Experimental]
The StylePropertyMapReadOnly.entries() method returns an array
a given object's own enumerable property [key, value] pairs,
the same order as that provided by a for...in
loop (the difference
that a for-in loop enumerates properties in the prototype chain
well).
StylePropertyMapReadOnly.entries()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/entries
Method. [Experimental] The StylePropertyMapReadOnly.entries() method returns an array a given object's own enumerable property [key, value] pairs, the same order as that provided by a `for...in` loop (the difference that a for-in loop enumerates properties in the prototype chain well). `StylePropertyMapReadOnly.entries()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/entries`
(for-each this & args)
Method.
[Experimental]
The StylePropertyMapReadOnly.forEach() method executes a provided
once for each element of web.css.StylePropertyMapReadOnly
.
StylePropertyMapReadOnly.forEach(function callback(currentValue[, index[, array]]) { //your code }[, thisArg]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/forEach
Method. [Experimental] The StylePropertyMapReadOnly.forEach() method executes a provided once for each element of `web.css.StylePropertyMapReadOnly`. `StylePropertyMapReadOnly.forEach(function callback(currentValue[, index[, array]]) { //your code }[, thisArg]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/forEach`
(get this property)
Method.
[Experimental]
The get() method of the web.css.StylePropertyMapReadOnly
interface
a web.css.CSSStyleValue
object for the first value of the specified
var declarationBlock = StylePropertyMapReadOnly.get(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/get
Method. [Experimental] The get() method of the `web.css.StylePropertyMapReadOnly` interface a `web.css.CSSStyleValue` object for the first value of the specified `var declarationBlock = StylePropertyMapReadOnly.get(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/get`
(get-all this property)
Method.
[Experimental]
The getAll() method of the web.css.StylePropertyMapReadOnly
returns an array of web.css.CSSStyleValue
objects containing
values for the provided property.
var cssStyleValues[] = StylePropertyMapReadOnly.getAll(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/getAll
Method. [Experimental] The getAll() method of the `web.css.StylePropertyMapReadOnly` returns an array of `web.css.CSSStyleValue` objects containing values for the provided property. `var cssStyleValues[] = StylePropertyMapReadOnly.getAll(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/getAll`
(has this property)
Method.
[Experimental]
The has() method of the web.css.StylePropertyMapReadOnly
interface
whether the specified property is in the StylePropertyMapReadOnly
var boolean = StylePropertyMapReadOnly.has(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/has
Method. [Experimental] The has() method of the `web.css.StylePropertyMapReadOnly` interface whether the specified property is in the StylePropertyMapReadOnly `var boolean = StylePropertyMapReadOnly.has(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/has`
(keys this)
Method.
[Experimental]
The StylePropertyMapReadOnly.keys() method returns a new Array containing the keys for each item in StylePropertyMapReadOnly
StylePropertyMapReadOnly.keys()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/keys
Method. [Experimental] The StylePropertyMapReadOnly.keys() method returns a new Array containing the keys for each item in StylePropertyMapReadOnly `StylePropertyMapReadOnly.keys()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/keys`
(size this)
Property.
[Read Only] [Experimental]
The size read-only property of the web.css.StylePropertyMapReadOnly
returns an unsinged long integer containing the size of the StylePropertyMapReadOnly
var size = StylePropertyMapReadOnly.size
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size
Property. [Read Only] [Experimental] The size read-only property of the `web.css.StylePropertyMapReadOnly` returns an unsinged long integer containing the size of the StylePropertyMapReadOnly `var size = StylePropertyMapReadOnly.size` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size`
(values this)
Method.
[Experimental]
The StylePropertyMapReadOnly.values() method returns a new Array containing the values for each index in the StylePropertyMapReadOnly
StylePropertyMapReadOnly.values()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/values
Method. [Experimental] The StylePropertyMapReadOnly.values() method returns a new Array containing the values for each index in the StylePropertyMapReadOnly `StylePropertyMapReadOnly.values()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/values`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close