2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2012-05-17 14:02:41 +04:00
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGFRAGMENTIDENTIFIER_H_
|
|
|
|
#define DOM_SVG_SVGFRAGMENTIDENTIFIER_H_
|
2012-05-17 14:02:41 +04:00
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2013-01-10 03:02:45 +04:00
|
|
|
namespace dom {
|
2019-01-02 16:05:23 +03:00
|
|
|
class Document;
|
2013-01-10 03:02:45 +04:00
|
|
|
class SVGSVGElement;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
2013-01-10 03:02:45 +04:00
|
|
|
|
2012-05-17 14:02:41 +04:00
|
|
|
/**
|
|
|
|
* Implements support for parsing SVG fragment identifiers
|
|
|
|
* http://www.w3.org/TR/SVG/linking.html#SVGFragmentIdentifiers
|
|
|
|
*/
|
|
|
|
class SVGFragmentIdentifier {
|
|
|
|
// To prevent the class being instantiated
|
2015-01-07 02:35:02 +03:00
|
|
|
SVGFragmentIdentifier() = delete;
|
2012-05-17 14:02:41 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Process the SVG fragment identifier, if there is one.
|
2015-03-08 20:34:47 +03:00
|
|
|
* @return true if we found a valid svgView()-style fragment identifier,
|
|
|
|
* in which case further processing by the caller can stop. Otherwise return
|
|
|
|
* false as we may have an ordinary anchor which needs to be :target matched.
|
2012-05-17 14:02:41 +04:00
|
|
|
*/
|
2019-01-02 16:05:23 +03:00
|
|
|
static bool ProcessFragmentIdentifier(dom::Document* aDocument,
|
2012-05-17 14:02:41 +04:00
|
|
|
const nsAString& aAnchorName);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Parse an SVG ViewSpec and set applicable attributes on the root element.
|
|
|
|
* @return true if there is a valid ViewSpec
|
|
|
|
*/
|
2013-01-10 03:02:45 +04:00
|
|
|
static bool ProcessSVGViewSpec(const nsAString& aViewSpec,
|
|
|
|
dom::SVGSVGElement* root);
|
2012-05-17 14:02:41 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGFRAGMENTIDENTIFIER_H_
|