Parent Directory
|
Revision Log
++ whatpm/t/ChangeLog 27 Jan 2008 07:19:02 -0000 * CSS-Parser-1.t: Files |css-text.dat| and |css-paged.dat| are added. * css-visual.dat: New test data for 'background-position' are added. * css-text.dat: New test file. * css-paged.dat: New test file. 2008-01-27 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/CSS/ChangeLog 27 Jan 2008 07:18:18 -0000 * Parser.pm ($parse_color): Support for '+'. HSL to RGB convertion was wrong. ('orphans', 'background-position' parse): Support for '+'. 2008-01-27 Wakaba <wakaba@suika.fam.cx>
| 1 | wakaba | 1.1 | #data |
| 2 | p { | ||
| 3 | color: rgb(1, 2, 3); | ||
| 4 | } | ||
| 5 | #cssom | ||
| 6 | | <p> | ||
| 7 | | color: rgb(1, 2, 3) | ||
| 8 | #csstext | ||
| 9 | p { | ||
| 10 | color: rgb(1, 2, 3); | ||
| 11 | } | ||
| 12 | |||
| 13 | #data | ||
| 14 | p { | ||
| 15 | color: rgb(1, 2, +3); | ||
| 16 | } | ||
| 17 | #cssom | ||
| 18 | | <p> | ||
| 19 | | color: rgb(1, 2, 3) | ||
| 20 | |||
| 21 | #data | ||
| 22 | p { | ||
| 23 | color: rgb(1, +2, 3); | ||
| 24 | } | ||
| 25 | #cssom | ||
| 26 | | <p> | ||
| 27 | | color: rgb(1, 2, 3) | ||
| 28 | |||
| 29 | #data | ||
| 30 | p { | ||
| 31 | color: rgb(+1, 2, 3); | ||
| 32 | } | ||
| 33 | #cssom | ||
| 34 | | <p> | ||
| 35 | | color: rgb(1, 2, 3) | ||
| 36 | |||
| 37 | #data | ||
| 38 | p { | ||
| 39 | color: rgb(-1, -2, -3); | ||
| 40 | } | ||
| 41 | #cssom | ||
| 42 | | <p> | ||
| 43 | | color: rgb(0, 0, 0) | ||
| 44 | |||
| 45 | #data | ||
| 46 | p { | ||
| 47 | color: hsl(1, 2%, 3%); | ||
| 48 | } | ||
| 49 | #cssom | ||
| 50 | | <p> | ||
| 51 | | color: rgb(7.803, 7.5021, 7.497) | ||
| 52 | |||
| 53 | #data | ||
| 54 | p { | ||
| 55 | color: hsl(+1, +2%, +3%); | ||
| 56 | } | ||
| 57 | #cssom | ||
| 58 | | <p> | ||
| 59 | | color: rgb(7.803, 7.5021, 7.497) | ||
| 60 | |||
| 61 | #data | ||
| 62 | p { | ||
| 63 | color: hsl(-1, -2%, -3%); | ||
| 64 | } | ||
| 65 | #cssom | ||
| 66 | | <p> | ||
| 67 | | color: rgb(0, 0, 0) | ||
| 68 |
| [email protected] | ViewVC Help |
| Powered by ViewVC 1.1.24 |