#ifndef AnimationHelpers_h
#define AnimationHelpers_h
#include "core/css/parser/BisonCSSParser.h"
#include "wtf/text/StringBuilder.h"
namespace WebCore {
static inline CSSPropertyID camelCaseCSSPropertyNameToID(const String& propertyName)
{
if (propertyName.find('-') != kNotFound)
return CSSPropertyInvalid;
StringBuilder builder;
size_t position = 0;
size_t end;
while ((end = propertyName.find(isASCIIUpper, position)) != kNotFound) {
builder.append(propertyName.substring(position, end - position) + "-" + toASCIILower((propertyName)[end]));
position = end + 1;
}
builder.append(propertyName.substring(position));
CSSPropertyID id = cssPropertyID(builder.toString());
return id;
}
}
#endif