| 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 3684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3695 if (!state.style()->hasFilter() || state.pendingSVGDocuments().isEmpty()) | 3695 if (!state.style()->hasFilter() || state.pendingSVGDocuments().isEmpty()) |
| 3696 return; | 3696 return; |
| 3697 | 3697 |
| 3698 CachedResourceLoader* cachedResourceLoader = state.document()->cachedResourc
eLoader(); | 3698 CachedResourceLoader* cachedResourceLoader = state.document()->cachedResourc
eLoader(); |
| 3699 Vector<RefPtr<FilterOperation> >& filterOperations = state.style()->mutableF
ilter().operations(); | 3699 Vector<RefPtr<FilterOperation> >& filterOperations = state.style()->mutableF
ilter().operations(); |
| 3700 for (unsigned i = 0; i < filterOperations.size(); ++i) { | 3700 for (unsigned i = 0; i < filterOperations.size(); ++i) { |
| 3701 RefPtr<FilterOperation> filterOperation = filterOperations.at(i); | 3701 RefPtr<FilterOperation> filterOperation = filterOperations.at(i); |
| 3702 if (filterOperation->getOperationType() == FilterOperation::REFERENCE) { | 3702 if (filterOperation->getOperationType() == FilterOperation::REFERENCE) { |
| 3703 ReferenceFilterOperation* referenceFilter = static_cast<ReferenceFil
terOperation*>(filterOperation.get()); | 3703 ReferenceFilterOperation* referenceFilter = static_cast<ReferenceFil
terOperation*>(filterOperation.get()); |
| 3704 | 3704 |
| 3705 WebKitCSSSVGDocumentValue* value = state.pendingSVGDocuments().get(r
eferenceFilter).get(); | 3705 WebKitCSSSVGDocumentValue* value = state.pendingSVGDocuments().get(r
eferenceFilter); |
| 3706 if (!value) | 3706 if (!value) |
| 3707 continue; | 3707 continue; |
| 3708 CachedSVGDocument* cachedDocument = value->load(cachedResourceLoader
); | 3708 CachedSVGDocument* cachedDocument = value->load(cachedResourceLoader
); |
| 3709 if (!cachedDocument) | 3709 if (!cachedDocument) |
| 3710 continue; | 3710 continue; |
| 3711 | 3711 |
| 3712 // Stash the CachedSVGDocument on the reference filter. | 3712 // Stash the CachedSVGDocument on the reference filter. |
| 3713 referenceFilter->setCachedSVGDocumentReference(adoptPtr(new CachedSV
GDocumentReference(cachedDocument))); | 3713 referenceFilter->setCachedSVGDocumentReference(adoptPtr(new CachedSV
GDocumentReference(cachedDocument))); |
| 3714 } | 3714 } |
| 3715 } | 3715 } |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4360 info.addMember(m_state, "state"); | 4360 info.addMember(m_state, "state"); |
| 4361 | 4361 |
| 4362 // FIXME: move this to a place where it would be called only once? | 4362 // FIXME: move this to a place where it would be called only once? |
| 4363 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); | 4363 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); |
| 4364 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); | 4364 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl
e"); |
| 4365 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle")
; | 4365 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle")
; |
| 4366 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); | 4366 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo
urceStyle"); |
| 4367 } | 4367 } |
| 4368 | 4368 |
| 4369 } // namespace WebCore | 4369 } // namespace WebCore |
| OLD | NEW |