GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
CSS::DOM::Value(3) User Contributed Perl Documentation CSS::DOM::Value(3)

CSS::DOM::Value - CSSValue class for CSS::DOM

Version 0.17

  # ...

This module implements objects that represent CSS property values. It implements the DOM CSSValue interface.

This class is used only for custom values (neither primitive values nor lists) and the special 'inherit' value.

cssText
Returns a string representation of the attribute. Pass an argument to set it.
cssValueType
Returns one of the constants below.

You probably don't need to call this, but here it is anyway:

  $val = new CSS::DOM::Value %arguments;

The hash-style %arguments are as follows:

type
"CSS_INHERIT" or "CSS_CUSTOM"
css
A string of CSS code. This is only used when "TYPE" is "CSS_CUSTOM".
owner
The style object that owns this value; if this is omitted, then the value is read-only. The value object holds a weak reference to the owner.
property
The name of the CSS property to which this value belongs. "cssText" uses this to determine how to parse text passed to it.

The following constants can be imported with "use CSS::DOM::Value ':all'". They represent the type of CSS value.
CSS_INHERIT (0)
CSS_PRIMITIVE_VALUE (1)
CSS_VALUE_LIST (2)
CSS_CUSTOM (3)

CSS::DOM

CSS::DOM::Value::Primitive

CSS::DOM::Value::List

CSS::DOM::Style

2018-01-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.