18 lines
385 B
Objective-C
18 lines
385 B
Objective-C
/**
|
|
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/css.html#CSS-CSSValueList
|
|
|
|
interface CSSValueList : CSSValue {
|
|
readonly attribute unsigned long length;
|
|
CSSValue item(in unsigned long index);
|
|
*/
|
|
|
|
#import "CSSValue.h"
|
|
|
|
@interface CSSValueList : CSSValue
|
|
|
|
@property(nonatomic,readonly) unsigned long length;
|
|
|
|
-(CSSValue*) item:(unsigned long) index;
|
|
|
|
@end
|