Parent Directory | Revision Log
++ manakai/lib/Message/DOM/ChangeLog 23 Dec 2007 08:18:42 -0000 2007-12-23 Wakaba <wakaba@suika.fam.cx> * CSSRule.pm (type, css_text): Typo fixed. (____new): s/_selector/_selectors/g; (CSSStyleRule.css_text, selectors_text): Ad hoc implementation. * CSSStyleDeclaration.pm (css_text): Ad hoc implementation. * CSSStyleSheet.pm (new): s/new/____new/. (css_text): New attribute.
1 | wakaba | 1.1 | package Message::DOM::CSSStyleDeclaration; |
2 | use strict; | ||
3 | wakaba | 1.2 | our $VERSION=do{my @r=(q$Revision: 1.1 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
4 | wakaba | 1.1 | push our @ISA, 'Message::IF::CSSStyleDeclaration'; |
5 | |||
6 | sub ____new ($) { | ||
7 | return bless \{}, $_[0]; | ||
8 | } # ____new | ||
9 | |||
10 | ## |CSSStyleDeclaration| attributes | ||
11 | |||
12 | wakaba | 1.2 | sub css_text ($;$) { |
13 | ## TODO: Implement ... | ||
14 | return ''; | ||
15 | } # css_text | ||
16 | |||
17 | wakaba | 1.1 | sub parent_rule ($) { |
18 | return ${$_[0]}->{parent_rule}; | ||
19 | } # parent_rule | ||
20 | |||
21 | ## TODO: Implement other methods and attributes | ||
22 | |||
23 | package Message::IF::CSSStyleDeclaration; | ||
24 | |||
25 | 1; | ||
26 | wakaba | 1.2 | ## $Date: 2007/12/22 06:29:32 $ |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |