| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 case CSSPrimitiveValue::CSS_IDENT: | 114 case CSSPrimitiveValue::CSS_IDENT: |
| 115 case CSSPrimitiveValue::CSS_ATTR: | 115 case CSSPrimitiveValue::CSS_ATTR: |
| 116 case CSSPrimitiveValue::CSS_COUNTER: | 116 case CSSPrimitiveValue::CSS_COUNTER: |
| 117 case CSSPrimitiveValue::CSS_RECT: | 117 case CSSPrimitiveValue::CSS_RECT: |
| 118 case CSSPrimitiveValue::CSS_RGBCOLOR: | 118 case CSSPrimitiveValue::CSS_RGBCOLOR: |
| 119 case CSSPrimitiveValue::CSS_PAIR: | 119 case CSSPrimitiveValue::CSS_PAIR: |
| 120 case CSSPrimitiveValue::CSS_UNICODE_RANGE: | 120 case CSSPrimitiveValue::CSS_UNICODE_RANGE: |
| 121 case CSSPrimitiveValue::CSS_PARSER_OPERATOR: | 121 case CSSPrimitiveValue::CSS_PARSER_OPERATOR: |
| 122 case CSSPrimitiveValue::CSS_PARSER_HEXCOLOR: | 122 case CSSPrimitiveValue::CSS_PARSER_HEXCOLOR: |
| 123 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER: | 123 case CSSPrimitiveValue::CSS_PARSER_IDENTIFIER: |
| 124 case CSSPrimitiveValue::CSS_PARSER_IDSEL: |
| 124 case CSSPrimitiveValue::CSS_TURN: | 125 case CSSPrimitiveValue::CSS_TURN: |
| 125 case CSSPrimitiveValue::CSS_COUNTER_NAME: | 126 case CSSPrimitiveValue::CSS_COUNTER_NAME: |
| 126 case CSSPrimitiveValue::CSS_SHAPE: | 127 case CSSPrimitiveValue::CSS_SHAPE: |
| 127 case CSSPrimitiveValue::CSS_QUAD: | 128 case CSSPrimitiveValue::CSS_QUAD: |
| 128 case CSSPrimitiveValue::CSS_CALC: | 129 case CSSPrimitiveValue::CSS_CALC: |
| 129 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER: | 130 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_NUMBER: |
| 130 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH: | 131 case CSSPrimitiveValue::CSS_CALC_PERCENTAGE_WITH_LENGTH: |
| 131 case CSSPrimitiveValue::CSS_PROPERTY_ID: | 132 case CSSPrimitiveValue::CSS_PROPERTY_ID: |
| 132 case CSSPrimitiveValue::CSS_VALUE_ID: | 133 case CSSPrimitiveValue::CSS_VALUE_ID: |
| 133 return false; | 134 return false; |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 return adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(expression,
range)); | 749 return adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(expression,
range)); |
| 749 } | 750 } |
| 750 | 751 |
| 751 void CSSCalcValue::traceAfterDispatch(Visitor* visitor) | 752 void CSSCalcValue::traceAfterDispatch(Visitor* visitor) |
| 752 { | 753 { |
| 753 visitor->trace(m_expression); | 754 visitor->trace(m_expression); |
| 754 CSSValue::traceAfterDispatch(visitor); | 755 CSSValue::traceAfterDispatch(visitor); |
| 755 } | 756 } |
| 756 | 757 |
| 757 } // namespace WebCore | 758 } // namespace WebCore |
| OLD | NEW |