| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. |
| 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. | 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. |
| 10 * | 10 * |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 case CSSPropertyWebkitLogicalWidth: | 259 case CSSPropertyWebkitLogicalWidth: |
| 260 case CSSPropertyWebkitLogicalHeight: | 260 case CSSPropertyWebkitLogicalHeight: |
| 261 case CSSPropertyWebkitMinLogicalWidth: | 261 case CSSPropertyWebkitMinLogicalWidth: |
| 262 case CSSPropertyWebkitMinLogicalHeight: | 262 case CSSPropertyWebkitMinLogicalHeight: |
| 263 case CSSPropertyWebkitPaddingAfter: | 263 case CSSPropertyWebkitPaddingAfter: |
| 264 case CSSPropertyWebkitPaddingBefore: | 264 case CSSPropertyWebkitPaddingBefore: |
| 265 case CSSPropertyWebkitPaddingEnd: | 265 case CSSPropertyWebkitPaddingEnd: |
| 266 case CSSPropertyWebkitPaddingStart: | 266 case CSSPropertyWebkitPaddingStart: |
| 267 acceptsNegativeNumbers = false; | 267 acceptsNegativeNumbers = false; |
| 268 return true; | 268 return true; |
| 269 case CSSPropertyShapeMargin: | |
| 270 acceptsNegativeNumbers = false; | |
| 271 return true; | |
| 272 case CSSPropertyBottom: | 269 case CSSPropertyBottom: |
| 273 case CSSPropertyLeft: | 270 case CSSPropertyLeft: |
| 274 case CSSPropertyMarginBottom: | 271 case CSSPropertyMarginBottom: |
| 275 case CSSPropertyMarginLeft: | 272 case CSSPropertyMarginLeft: |
| 276 case CSSPropertyMarginRight: | 273 case CSSPropertyMarginRight: |
| 277 case CSSPropertyMarginTop: | 274 case CSSPropertyMarginTop: |
| 278 case CSSPropertyRight: | 275 case CSSPropertyRight: |
| 279 case CSSPropertyTop: | 276 case CSSPropertyTop: |
| 280 case CSSPropertyWebkitMarginAfter: | 277 case CSSPropertyWebkitMarginAfter: |
| 281 case CSSPropertyWebkitMarginBefore: | 278 case CSSPropertyWebkitMarginBefore: |
| (...skipping 1568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1850 m_observer->endProperty(isImportantFound, isPropertyParsed, m_tokenizer.
safeUserStringTokenOffset(), errorType); | 1847 m_observer->endProperty(isImportantFound, isPropertyParsed, m_tokenizer.
safeUserStringTokenOffset(), errorType); |
| 1851 } | 1848 } |
| 1852 | 1849 |
| 1853 void BisonCSSParser::startEndUnknownRule() | 1850 void BisonCSSParser::startEndUnknownRule() |
| 1854 { | 1851 { |
| 1855 if (m_observer) | 1852 if (m_observer) |
| 1856 m_observer->startEndUnknownRule(); | 1853 m_observer->startEndUnknownRule(); |
| 1857 } | 1854 } |
| 1858 | 1855 |
| 1859 } | 1856 } |
| OLD | NEW |