OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SVGColor
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGColor.h
34
class
SVGColor
: public CSSValue {
43
static PassRefPtr<
SVGColor
> createFromString(const String& rgbColor)
45
RefPtr<
SVGColor
> color = adoptRef(new
SVGColor
(SVG_COLORTYPE_RGBCOLOR));
50
static PassRefPtr<
SVGColor
> createFromColor(const Color& rgbColor)
52
RefPtr<
SVGColor
> color = adoptRef(new
SVGColor
(SVG_COLORTYPE_RGBCOLOR));
57
static PassRefPtr<
SVGColor
> createCurrentColor()
59
return adoptRef(new
SVGColor
(SVG_COLORTYPE_CURRENTCOLOR));
74
~
SVGColor
() { }
[
all
...]
SVGColor.cpp
23
#include "core/svg/
SVGColor
.h"
31
SVGColor
::
SVGColor
(const SVGColorType& colorType)
37
SVGColor
::
SVGColor
(ClassType classType, const SVGColorType& colorType)
43
PassRefPtr<RGBColor>
SVGColor
::rgbColor() const
48
Color
SVGColor
::colorFromRGBColorString(const String& colorString)
57
void
SVGColor
::setRGBColor(const String&, ExceptionState& exceptionState)
59
// The whole
SVGColor
interface is deprecated in SVG 1.1 (2nd edition).
64
void
SVGColor
::setRGBColorICCColor(const String&, const String&, ExceptionState& exceptionState
[
all
...]
Completed in 152 milliseconds