Parent Directory
|
Revision Log
++ whatpm/t/ChangeLog 27 Jan 2008 08:09:01 -0000 * CSS-Parser-1.t: Files |css-table.dat| and |css-interactive.dat| are added. * css-table.dat: New test file. * css-interactive.dat: New test file. * css-font.dat: New test data for 'font-size' are added. * css-text.dat: New test data for 'text-indent', 'letter-spacing', and 'word-spacing' are added. 2008-01-27 Wakaba <wakaba@suika.fam.cx> ++ whatpm/Whatpm/CSS/ChangeLog 27 Jan 2008 08:07:41 -0000 * Parser.pm ('letter-spacing' parse): Support for '+'. ('border-spacing' serialize_multiple): Revised taking into account 'import' and 'inherit'. ('border-spacing' parse): Support for '+'. 2008-01-27 Wakaba <wakaba@suika.fam.cx>
| 1 | #data |
| 2 | p { |
| 3 | outline-width: 12px; |
| 4 | } |
| 5 | #cssom |
| 6 | | <p> |
| 7 | | outline-width: 12px |
| 8 | #csstext |
| 9 | p { |
| 10 | outline-width: 12px; |
| 11 | } |
| 12 | |
| 13 | #data |
| 14 | p { |
| 15 | outline-width: +12px; |
| 16 | } |
| 17 | #cssom |
| 18 | | <p> |
| 19 | | outline-width: 12px |
| 20 | #csstext |
| 21 | p { |
| 22 | outline-width: 12px; |
| 23 | } |
| 24 | |
| 25 | #data |
| 26 | p { |
| 27 | outline-width: -12px; |
| 28 | } |
| 29 | #errors |
| 30 | ;2;19;m;syntax error:'outline-width' |
| 31 | #cssom |
| 32 | | <p> |
| 33 | |
| 34 | #data |
| 35 | p { |
| 36 | outline: 12px; |
| 37 | } |
| 38 | #cssom |
| 39 | | <p> |
| 40 | | outline: 12px none -manakai-invert-or-currentcolor |
| 41 | | outline-color: -manakai-invert-or-currentcolor |
| 42 | | outline-style: none |
| 43 | | outline-width: 12px |
| 44 | #csstext |
| 45 | p { |
| 46 | outline: 12px none -manakai-invert-or-currentcolor; |
| 47 | } |
| 48 | |
| 49 | #data |
| 50 | p { |
| 51 | outline: +12px; |
| 52 | } |
| 53 | #cssom |
| 54 | | <p> |
| 55 | | outline: 12px none -manakai-invert-or-currentcolor |
| 56 | | outline-color: -manakai-invert-or-currentcolor |
| 57 | | outline-style: none |
| 58 | | outline-width: 12px |
| 59 | |
| 60 | #data |
| 61 | p { |
| 62 | outline: -12px; |
| 63 | } |
| 64 | #errors |
| 65 | ;2;13;m;syntax error:'outline' |
| 66 | #cssom |
| 67 | | <p> |
| admin@suikawiki.org | ViewVC Help |
| Powered by ViewVC 1.1.24 |