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