/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/** * While views are not directly rendered in SVG they can be linked to * and thereby override attributes of an <svg> element via a fragment * identifier. The SVGViewFrame class passes on any attribute changes * the view receives to the overridden <svg> element (if there is one).
**/ class SVGViewFrame final : public nsIFrame { friend nsIFrame* ::NS_NewSVGViewFrame(mozilla::PresShell* aPresShell,
ComputedStyle* aStyle);
nsresult SVGViewFrame::AttributeChanged(int32_t aNameSpaceID,
nsAtom* aAttribute, int32_t aModType) { // Ignore zoomAndPan as it does not cause the <svg> element to re-render
if (svgElement->IsOverriddenBy(viewID)) { // We're the view that's providing overrides, so pretend that the frame // we're overriding was updated.
outerSVGFrame->AttributeChanged(aNameSpaceID, aAttribute, aModType);
}
}
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.13Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.