| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * (C) 2005 Rob Buis <buis@kde.org> | 3 * (C) 2005 Rob Buis <buis@kde.org> |
| 4 * (C) 2006 Alexander Kellett <lypanov@kde.org> | 4 * (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "core/layout/svg/LayoutSVGResourceClipper.h" | 38 #include "core/layout/svg/LayoutSVGResourceClipper.h" |
| 39 #include "core/layout/svg/LayoutSVGResourceFilter.h" | 39 #include "core/layout/svg/LayoutSVGResourceFilter.h" |
| 40 #include "core/layout/svg/LayoutSVGResourceLinearGradient.h" | 40 #include "core/layout/svg/LayoutSVGResourceLinearGradient.h" |
| 41 #include "core/layout/svg/LayoutSVGResourceMarker.h" | 41 #include "core/layout/svg/LayoutSVGResourceMarker.h" |
| 42 #include "core/layout/svg/LayoutSVGResourceMasker.h" | 42 #include "core/layout/svg/LayoutSVGResourceMasker.h" |
| 43 #include "core/layout/svg/LayoutSVGResourcePattern.h" | 43 #include "core/layout/svg/LayoutSVGResourcePattern.h" |
| 44 #include "core/layout/svg/LayoutSVGResourceRadialGradient.h" | 44 #include "core/layout/svg/LayoutSVGResourceRadialGradient.h" |
| 45 #include "core/layout/svg/LayoutSVGRoot.h" | 45 #include "core/layout/svg/LayoutSVGRoot.h" |
| 46 #include "core/layout/svg/LayoutSVGShape.h" | 46 #include "core/layout/svg/LayoutSVGShape.h" |
| 47 #include "core/layout/svg/LayoutSVGText.h" | 47 #include "core/layout/svg/LayoutSVGText.h" |
| 48 #include "core/layout/svg/SVGLayoutSupport.h" |
| 48 #include "core/layout/svg/line/SVGInlineTextBox.h" | 49 #include "core/layout/svg/line/SVGInlineTextBox.h" |
| 49 #include "core/layout/svg/line/SVGRootInlineBox.h" | 50 #include "core/layout/svg/line/SVGRootInlineBox.h" |
| 50 #include "core/svg/LinearGradientAttributes.h" | 51 #include "core/svg/LinearGradientAttributes.h" |
| 51 #include "core/svg/PatternAttributes.h" | 52 #include "core/svg/PatternAttributes.h" |
| 52 #include "core/svg/RadialGradientAttributes.h" | 53 #include "core/svg/RadialGradientAttributes.h" |
| 53 #include "core/svg/SVGCircleElement.h" | 54 #include "core/svg/SVGCircleElement.h" |
| 54 #include "core/svg/SVGEllipseElement.h" | 55 #include "core/svg/SVGEllipseElement.h" |
| 55 #include "core/svg/SVGLineElement.h" | 56 #include "core/svg/SVGLineElement.h" |
| 56 #include "core/svg/SVGLinearGradientElement.h" | 57 #include "core/svg/SVGLinearGradientElement.h" |
| 57 #include "core/svg/SVGPathElement.h" | 58 #include "core/svg/SVGPathElement.h" |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 ts << " "; | 670 ts << " "; |
| 670 writeNameAndQuotedValue(ts, "filter", svgStyle.filterResource()); | 671 writeNameAndQuotedValue(ts, "filter", svgStyle.filterResource()); |
| 671 ts << " "; | 672 ts << " "; |
| 672 writeStandardPrefix(ts, *filter, 0); | 673 writeStandardPrefix(ts, *filter, 0); |
| 673 ts << " " << filter->resourceBoundingBox(&layoutObject) << "\n"; | 674 ts << " " << filter->resourceBoundingBox(&layoutObject) << "\n"; |
| 674 } | 675 } |
| 675 } | 676 } |
| 676 } | 677 } |
| 677 | 678 |
| 678 } // namespace blink | 679 } // namespace blink |
| OLD | NEW |