Liking cljdoc? Tell your friends :D

web.css.CSSUnparsedValue

The CSSUnparsedValue interface of the CSS Typed Object Model represents property values that reference custom properties. consists of a list of string fragments and variable references.

The CSSUnparsedValue interface of the CSS Typed Object Model
represents property values that reference custom properties.
consists of a list of string fragments and variable references.
raw docstring

constructorcljs

(constructor & args)

Constructor.

The CSSUnparsedValue() constructor creates a new web.css.CSSUnparsedValue object which represents property values that reference custom properties.

members An array whose values must be either a web.USVString or a web.css.CSSVariableReferenceValue.

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/CSSUnparsedValue

Constructor.

The CSSUnparsedValue() constructor creates a new `web.css.CSSUnparsedValue` object which represents property values that reference custom properties.

members
An array whose values must be either a `web.USVString` or a `web.css.CSSVariableReferenceValue`.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/CSSUnparsedValue`
sourceraw docstring

entriescljs

(entries this obj)

Method.

[Draft] [Experimental]

The CSSUnparsedValue.entries() method returns an array of a given own enumerable property [key, value] pairs in the same order that provided by a for...in loop (the difference being that for-in loop enumerates properties in the prototype chain as well).

CSSUnparsedValue.entries(obj)

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/entries

Method.

[Draft]
[Experimental]

The CSSUnparsedValue.entries() method returns an array of a given
own enumerable property [key, value] pairs in the same order
that provided by a `for...in` loop (the difference being that
for-in loop enumerates properties in the prototype chain as well).

`CSSUnparsedValue.entries(obj)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/entries`
sourceraw docstring

for-eachcljs

(for-each this & args)

Method.

[Draft] [Experimental]

The CSSUnparsedValue.forEach() method executes a provided function for each element of the web.css.CSSUnparsedValue.

CSSUnparsedValue.forEach(function callback(currentValue[, index[, array]]) { // your iterator }[, thisArg]);

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/forEach

Method.

[Draft]
[Experimental]

The CSSUnparsedValue.forEach() method executes a provided function
for each element of the `web.css.CSSUnparsedValue`.

`CSSUnparsedValue.forEach(function callback(currentValue[, index[, array]]) {
// your iterator
}[, thisArg]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/forEach`
sourceraw docstring

keyscljs

(keys this)

Method.

[Draft] [Experimental]

The CSSUnparsedValue.keys() method returns a new Array Iterator that contains the keys for each index in the array.

CSSUnparsedValue.keys()

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/keys

Method.

[Draft]
[Experimental]

The CSSUnparsedValue.keys() method returns a new Array Iterator
that contains the keys for each index in the array.

`CSSUnparsedValue.keys()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/keys`
sourceraw docstring

lengthcljs

(length this)

Property.

[Read Only] [Draft] [Experimental]

The length read-only property of the web.css.CSSUnparsedValue returns the number of items in the object.

var length = CSSUnparsedValue.length;

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/length

Property.

[Read Only]
[Draft]
[Experimental]

The length read-only property of the `web.css.CSSUnparsedValue`
returns the number of items in the object.

`var length = CSSUnparsedValue.length;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/length`
sourceraw docstring

valuescljs

(values this)

Method.

[Draft] [Experimental]

The CSSUnparsedValue.values() method returns a new Array Iterator that contains the values for each index in the CSSUnparsedValue

CSSUnparsedValue.values()

See also: https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/values

Method.

[Draft]
[Experimental]

The CSSUnparsedValue.values() method returns a new Array Iterator
that contains the values for each index in the CSSUnparsedValue

`CSSUnparsedValue.values()`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/CSSUnparsedValue/values`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close