mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
24 lines
588 B
Objective-C
24 lines
588 B
Objective-C
/**
|
|
http://www.w3.org/TR/SVG/types.html#InterfaceSVGStylable
|
|
|
|
interface SVGStylable {
|
|
|
|
readonly attribute SVGAnimatedString className;
|
|
readonly attribute CSSStyleDeclaration style;
|
|
|
|
CSSValue getPresentationAttribute(in DOMString name);
|
|
*/
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "CSSStyleDeclaration.h"
|
|
#import "CSSValue.h"
|
|
|
|
@protocol SVGStylable <NSObject>
|
|
|
|
@property(nonatomic,retain) /*FIXME: should be of type: SVGAnimatedString */ NSString* className;
|
|
@property(nonatomic,retain) CSSStyleDeclaration* style;
|
|
|
|
-(CSSValue*) getPresentationAttribute:(NSString*) name;
|
|
|
|
@end
|