1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// This file is automatically generated from CSSProperties.json by the process-css-properties.py script. Do not edit it.
#include "config.h"
#include "StyleComputedStyleProperties.h"
#include "StyleComputedStyle+GettersInlines.h"
namespace WebCore {
namespace Style {
WebCore::Color ComputedStyleProperties::testColorResolvingCurrentColor() const
{
return testColorResolver().colorResolvingCurrentColor();
}
WebCore::Color ComputedStyleProperties::testColorResolvingCurrentColorApplyingColorFilter() const
{
return testColorResolver().colorResolvingCurrentColorApplyingColorFilter();
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColor(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorResolver().visitedDependentColor(paintBehavior);
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColorApplyingColorFilter(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorResolver().visitedDependentColorApplyingColorFilter(paintBehavior);
}
WebCore::Color ComputedStyleProperties::testColorAllowsTypesAbsoluteResolvingCurrentColor() const
{
return testColorAllowsTypesAbsoluteResolver().colorResolvingCurrentColor();
}
WebCore::Color ComputedStyleProperties::testColorAllowsTypesAbsoluteResolvingCurrentColorApplyingColorFilter() const
{
return testColorAllowsTypesAbsoluteResolver().colorResolvingCurrentColorApplyingColorFilter();
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColorAllowsTypesAbsolute(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorAllowsTypesAbsoluteResolver().visitedDependentColor(paintBehavior);
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColorAllowsTypesAbsoluteApplyingColorFilter(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorAllowsTypesAbsoluteResolver().visitedDependentColorApplyingColorFilter(paintBehavior);
}
WebCore::Color ComputedStyleProperties::testColorPropertyWithVisitedLinkSupportResolvingCurrentColor() const
{
return testColorPropertyWithVisitedLinkSupportResolver().colorResolvingCurrentColor();
}
WebCore::Color ComputedStyleProperties::testColorPropertyWithVisitedLinkSupportResolvingCurrentColorApplyingColorFilter() const
{
return testColorPropertyWithVisitedLinkSupportResolver().colorResolvingCurrentColorApplyingColorFilter();
}
WebCore::Color ComputedStyleProperties::visitedLinkTestColorPropertyWithVisitedLinkSupportResolvingCurrentColor() const
{
return testColorPropertyWithVisitedLinkSupportResolver().visitedLinkColorResolvingCurrentColor();
}
WebCore::Color ComputedStyleProperties::visitedLinkTestColorPropertyWithVisitedLinkSupportResolvingCurrentColorApplyingColorFilter() const
{
return testColorPropertyWithVisitedLinkSupportResolver().visitedLinkColorResolvingCurrentColorApplyingColorFilter();
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColorPropertyWithVisitedLinkSupport(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorPropertyWithVisitedLinkSupportResolver().visitedDependentColor(paintBehavior);
}
WebCore::Color ComputedStyleProperties::visitedDependentTestColorPropertyWithVisitedLinkSupportApplyingColorFilter(OptionSet<PaintBehavior> paintBehavior) const
{
return testColorPropertyWithVisitedLinkSupportResolver().visitedDependentColorApplyingColorFilter(paintBehavior);
}
} // namespace WebCore
} // namespace Style
|