Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(788)

Unified Diff: Source/core/svg/SVGFontFaceUriElement.cpp

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/svg/SVGFontFaceUriElement.cpp
diff --git a/Source/core/svg/SVGFontFaceUriElement.cpp b/Source/core/svg/SVGFontFaceUriElement.cpp
deleted file mode 100644
index 6d91b99bd6c5a8767f4297f03cfbd842835766a6..0000000000000000000000000000000000000000
--- a/Source/core/svg/SVGFontFaceUriElement.cpp
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-
-#if ENABLE(SVG_FONTS)
-#include "core/svg/SVGFontFaceUriElement.h"
-
-#include "core/XLinkNames.h"
-#include "core/css/CSSFontFaceSrcValue.h"
-#include "core/dom/Document.h"
-#include "core/fetch/FetchRequest.h"
-#include "core/fetch/ResourceFetcher.h"
-#include "core/svg/SVGFontFaceElement.h"
-
-namespace blink {
-
-using namespace SVGNames;
-
-inline SVGFontFaceUriElement::SVGFontFaceUriElement(Document& document)
- : SVGElement(font_face_uriTag, document)
-{
-}
-
-DEFINE_NODE_FACTORY(SVGFontFaceUriElement)
-
-SVGFontFaceUriElement::~SVGFontFaceUriElement()
-{
- if (m_resource)
- m_resource->removeClient(this);
-}
-
-PassRefPtrWillBeRawPtr<CSSFontFaceSrcValue> SVGFontFaceUriElement::srcValue() const
-{
- RefPtrWillBeRawPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr));
- AtomicString value(fastGetAttribute(formatAttr));
- src->setFormat(value.isEmpty() ? AtomicString("svg", AtomicString::ConstructFromLiteral) : value); // Default format
- return src.release();
-}
-
-void SVGFontFaceUriElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
-{
- if (name.matches(XLinkNames::hrefAttr))
- loadFont();
- else
- SVGElement::parseAttribute(name, value);
-}
-
-void SVGFontFaceUriElement::childrenChanged(const ChildrenChange& change)
-{
- SVGElement::childrenChanged(change);
-
- if (!isSVGFontFaceSrcElement(parentNode()))
- return;
-
- ContainerNode* grandparent = parentNode()->parentNode();
- if (isSVGFontFaceElement(grandparent))
- toSVGFontFaceElement(*grandparent).rebuildFontFace();
-}
-
-Node::InsertionNotificationRequest SVGFontFaceUriElement::insertedInto(ContainerNode* rootParent)
-{
- loadFont();
- return SVGElement::insertedInto(rootParent);
-}
-
-void SVGFontFaceUriElement::loadFont()
-{
- if (m_resource)
- m_resource->removeClient(this);
-
- const AtomicString& href = getAttribute(XLinkNames::hrefAttr);
- if (!href.isNull()) {
- ResourceFetcher* fetcher = document().fetcher();
- FetchRequest request(ResourceRequest(document().completeURL(href)), localName());
- m_resource = fetcher->fetchFont(request);
- if (m_resource) {
- m_resource->addClient(this);
- m_resource->beginLoadIfNeeded(fetcher);
- }
- } else {
- m_resource = 0;
- }
-}
-
-}
-
-#endif // ENABLE(SVG_FONTS)

Powered by Google App Engine
This is Rietveld 408576698