| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "core/html/HTMLPlugInElement.h" | 41 #include "core/html/HTMLPlugInElement.h" |
| 42 #include "core/html/HTMLTableCellElement.h" | 42 #include "core/html/HTMLTableCellElement.h" |
| 43 #include "core/html/HTMLTextAreaElement.h" | 43 #include "core/html/HTMLTextAreaElement.h" |
| 44 #include "core/layout/LayoutReplaced.h" | 44 #include "core/layout/LayoutReplaced.h" |
| 45 #include "core/layout/LayoutTheme.h" | 45 #include "core/layout/LayoutTheme.h" |
| 46 #include "core/style/ComputedStyle.h" | 46 #include "core/style/ComputedStyle.h" |
| 47 #include "core/style/ComputedStyleConstants.h" | 47 #include "core/style/ComputedStyleConstants.h" |
| 48 #include "core/svg/SVGSVGElement.h" | 48 #include "core/svg/SVGSVGElement.h" |
| 49 #include "platform/Length.h" | 49 #include "platform/Length.h" |
| 50 #include "platform/transforms/TransformOperations.h" | 50 #include "platform/transforms/TransformOperations.h" |
| 51 #include "public/platform/WebCompositorMutableProperties.h" | |
| 52 #include "wtf/Assertions.h" | 51 #include "wtf/Assertions.h" |
| 53 | 52 |
| 54 namespace blink { | 53 namespace blink { |
| 55 | 54 |
| 56 using namespace HTMLNames; | 55 using namespace HTMLNames; |
| 57 | 56 |
| 58 static EDisplay equivalentBlockDisplay(EDisplay display, bool isFloating, bool s
trictParsing) | 57 static EDisplay equivalentBlockDisplay(EDisplay display, bool isFloating, bool s
trictParsing) |
| 59 { | 58 { |
| 60 switch (display) { | 59 switch (display) { |
| 61 case BLOCK: | 60 case BLOCK: |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 // We want to count vertical percentage paddings/margins on flex items b
ecause our current | 478 // We want to count vertical percentage paddings/margins on flex items b
ecause our current |
| 480 // behavior is different from the spec and we want to gather compatibili
ty data. | 479 // behavior is different from the spec and we want to gather compatibili
ty data. |
| 481 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen
t()) | 480 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen
t()) |
| 482 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert
ical); | 481 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert
ical); |
| 483 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent(
)) | 482 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent(
)) |
| 484 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti
cal); | 483 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti
cal); |
| 485 } | 484 } |
| 486 } | 485 } |
| 487 | 486 |
| 488 } | 487 } |
| OLD | NEW |