Searched defs:rgbValue (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebCore/css/
H A DCSSPrimitiveValue.cpp65 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValue::createColor(unsigned rgbValue) argument
70 if (rgbValue == Color::transparent) {
74 if (rgbValue == Color::white) {
78 RefPtr<CSSPrimitiveValue> primitiveValue = colorValueCache->get(rgbValue);
81 primitiveValue = adoptRef(new CSSPrimitiveValue(rgbValue));
86 colorValueCache->add(rgbValue, primitiveValue);

Completed in 438 milliseconds