| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
| 7 * Copyright (C) 2015 Google Inc. All rights reserved. | 7 * Copyright (C) 2015 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Lesser General Public | 10 * modify it under the terms of the GNU Lesser General Public |
| (...skipping 2672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2683 if (!style.contain()) | 2683 if (!style.contain()) |
| 2684 return cssValuePool().createIdentifierValue(CSSValueNone); | 2684 return cssValuePool().createIdentifierValue(CSSValueNone); |
| 2685 if (style.contain() == ContainsStrict) | 2685 if (style.contain() == ContainsStrict) |
| 2686 return cssValuePool().createIdentifierValue(CSSValueStrict); | 2686 return cssValuePool().createIdentifierValue(CSSValueStrict); |
| 2687 | 2687 |
| 2688 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparat
ed(); | 2688 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparat
ed(); |
| 2689 if (style.contain() & ContainsStyle) | 2689 if (style.contain() & ContainsStyle) |
| 2690 list->append(cssValuePool().createIdentifierValue(CSSValueStyle)); | 2690 list->append(cssValuePool().createIdentifierValue(CSSValueStyle)); |
| 2691 if (style.contain() & ContainsLayout) | 2691 if (style.contain() & ContainsLayout) |
| 2692 list->append(cssValuePool().createIdentifierValue(CSSValueLayout)); | 2692 list->append(cssValuePool().createIdentifierValue(CSSValueLayout)); |
| 2693 if (style.contain() & ContainsPaint) | 2693 if (style.containsPaint()) |
| 2694 list->append(cssValuePool().createIdentifierValue(CSSValuePaint)); | 2694 list->append(cssValuePool().createIdentifierValue(CSSValuePaint)); |
| 2695 ASSERT(list->length()); | 2695 ASSERT(list->length()); |
| 2696 return list.release(); | 2696 return list.release(); |
| 2697 } | 2697 } |
| 2698 case CSSPropertyVariable: | 2698 case CSSPropertyVariable: |
| 2699 // TODO(leviw): We should have a way to retrive variables here. | 2699 // TODO(leviw): We should have a way to retrive variables here. |
| 2700 ASSERT_NOT_REACHED(); | 2700 ASSERT_NOT_REACHED(); |
| 2701 return nullptr; | 2701 return nullptr; |
| 2702 case CSSPropertyAll: | 2702 case CSSPropertyAll: |
| 2703 return nullptr; | 2703 return nullptr; |
| 2704 default: | 2704 default: |
| 2705 break; | 2705 break; |
| 2706 } | 2706 } |
| 2707 ASSERT_NOT_REACHED(); | 2707 ASSERT_NOT_REACHED(); |
| 2708 return nullptr; | 2708 return nullptr; |
| 2709 } | 2709 } |
| 2710 | 2710 |
| 2711 } | 2711 } |
| OLD | NEW |