| @@ 682-689 (lines=8) @@ | ||
| 679 | $this->status = 'ic'; |
|
| 680 | ++$i; |
|
| 681 | $this->from[] = 'ip'; |
|
| 682 | } elseif ($string{$i} === '}') { |
|
| 683 | $this->explode_selectors(); |
|
| 684 | $this->status = 'is'; |
|
| 685 | $this->invalid_at = false; |
|
| 686 | $this->_add_token(SEL_END, $this->selector); |
|
| 687 | $this->selector = ''; |
|
| 688 | $this->property = ''; |
|
| 689 | } elseif ($string{$i} === ';') { |
|
| 690 | $this->property = ''; |
|
| 691 | } elseif ($string{$i} === '\\') { |
|
| 692 | $this->property .= $this->_unicode($string, $i); |
|
| @@ 824-830 (lines=7) @@ | ||
| 821 | $this->sub_value_arr = array(); |
|
| 822 | $this->value = ''; |
|
| 823 | } |
|
| 824 | if ($string{$i} === '}') { |
|
| 825 | $this->explode_selectors(); |
|
| 826 | $this->_add_token(SEL_END, $this->selector); |
|
| 827 | $this->status = 'is'; |
|
| 828 | $this->invalid_at = false; |
|
| 829 | $this->selector = ''; |
|
| 830 | } |
|
| 831 | } elseif (!$pn) { |
|
| 832 | $this->sub_value .= $string{$i}; |
|
| 833 | ||