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