blob: 6f4b907d39676fcd0e64001170599ef13802ac44 [file] [log] [blame]
/*
* Copyright (C) 2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "CSSStyleDeclaration.h"
#include "CSSPropertyNames.h"
#include "CSSPropertyParser.h"
#include "DeprecatedGlobalSettings.h"
#include "Document.h"
#include "HashTools.h"
#include "Settings.h"
#include "StyledElement.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/Optional.h>
#include <wtf/Variant.h>
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(CSSStyleDeclaration);
namespace {
enum class PropertyNamePrefix { None, Epub, WebKit };
template<size_t prefixCStringLength>
static inline bool matchesCSSPropertyNamePrefix(const StringImpl& propertyName, const char (&prefix)[prefixCStringLength])
{
size_t prefixLength = prefixCStringLength - 1;
ASSERT(toASCIILower(propertyName[0]) == prefix[0]);
const size_t offset = 1;
#ifndef NDEBUG
for (size_t i = 0; i < prefixLength; ++i)
ASSERT(isASCIILower(prefix[i]));
ASSERT(!prefix[prefixLength]);
ASSERT(propertyName.length());
#endif
// The prefix within the property name must be followed by a capital letter.
// Other characters in the prefix within the property name must be lowercase.
if (propertyName.length() < prefixLength + 1)
return false;
for (size_t i = offset; i < prefixLength; ++i) {
if (propertyName[i] != prefix[i])
return false;
}
if (!isASCIIUpper(propertyName[prefixLength]))
return false;
return true;
}
static PropertyNamePrefix propertyNamePrefix(const StringImpl& propertyName)
{
ASSERT(propertyName.length());
// First character of the prefix within the property name may be upper or lowercase.
UChar firstChar = toASCIILower(propertyName[0]);
switch (firstChar) {
case 'e':
if (matchesCSSPropertyNamePrefix(propertyName, "epub"))
return PropertyNamePrefix::Epub;
break;
case 'w':
if (matchesCSSPropertyNamePrefix(propertyName, "webkit"))
return PropertyNamePrefix::WebKit;
break;
default:
break;
}
return PropertyNamePrefix::None;
}
static inline void writeWebKitPrefix(char*& buffer)
{
*buffer++ = '-';
*buffer++ = 'w';
*buffer++ = 'e';
*buffer++ = 'b';
*buffer++ = 'k';
*buffer++ = 'i';
*buffer++ = 't';
*buffer++ = '-';
}
static inline void writeEpubPrefix(char*& buffer)
{
*buffer++ = '-';
*buffer++ = 'e';
*buffer++ = 'p';
*buffer++ = 'u';
*buffer++ = 'b';
*buffer++ = '-';
}
static CSSPropertyID parseJavaScriptCSSPropertyName(const AtomString& propertyName)
{
using CSSPropertyIDMap = HashMap<String, CSSPropertyID>;
static NeverDestroyed<CSSPropertyIDMap> propertyIDCache;
auto* propertyNameString = propertyName.impl();
if (!propertyNameString)
return CSSPropertyInvalid;
unsigned length = propertyNameString->length();
if (!length)
return CSSPropertyInvalid;
if (auto id = propertyIDCache.get().get(propertyNameString))
return id;
constexpr size_t bufferSize = maxCSSPropertyNameLength + 1;
char buffer[bufferSize];
char* bufferPtr = buffer;
const char* name = bufferPtr;
unsigned i = 0;
switch (propertyNamePrefix(*propertyNameString)) {
case PropertyNamePrefix::None:
if (isASCIIUpper((*propertyNameString)[0]))
return CSSPropertyInvalid;
break;
case PropertyNamePrefix::Epub:
writeEpubPrefix(bufferPtr);
i += 4;
break;
case PropertyNamePrefix::WebKit:
writeWebKitPrefix(bufferPtr);
i += 6;
break;
}
*bufferPtr++ = toASCIILower((*propertyNameString)[i++]);
char* bufferEnd = buffer + bufferSize;
char* stringEnd = bufferEnd - 1;
size_t bufferSizeLeft = stringEnd - bufferPtr;
size_t propertySizeLeft = length - i;
if (propertySizeLeft > bufferSizeLeft)
return CSSPropertyInvalid;
for (; i < length; ++i) {
UChar c = (*propertyNameString)[i];
if (!c || !isASCII(c))
return CSSPropertyInvalid; // illegal character
if (isASCIIUpper(c)) {
size_t bufferSizeLeft = stringEnd - bufferPtr;
size_t propertySizeLeft = length - i + 1;
if (propertySizeLeft > bufferSizeLeft)
return CSSPropertyInvalid;
*bufferPtr++ = '-';
*bufferPtr++ = toASCIILowerUnchecked(c);
} else
*bufferPtr++ = c;
ASSERT_WITH_SECURITY_IMPLICATION(bufferPtr < bufferEnd);
}
ASSERT_WITH_SECURITY_IMPLICATION(bufferPtr < bufferEnd);
*bufferPtr = '\0';
unsigned outputLength = bufferPtr - buffer;
#if PLATFORM(IOS_FAMILY)
cssPropertyNameIOSAliasing(buffer, name, outputLength);
#endif
auto hashTableEntry = findProperty(name, outputLength);
if (!hashTableEntry)
return CSSPropertyInvalid;
auto id = static_cast<CSSPropertyID>(hashTableEntry->id);
if (!id)
return CSSPropertyInvalid;
propertyIDCache.get().add(propertyNameString, id);
return id;
}
static CSSPropertyID propertyIDFromJavaScriptCSSPropertyName(const AtomString& propertyName, const Settings* settings)
{
auto id = parseJavaScriptCSSPropertyName(propertyName);
if (!isEnabledCSSProperty(id) || !isCSSPropertyEnabledBySettings(id, settings))
return CSSPropertyInvalid;
return id;
}
}
CSSPropertyID CSSStyleDeclaration::getCSSPropertyIDFromJavaScriptPropertyName(const AtomString& propertyName)
{
// FIXME: This is going to return incorrect results for css properties disabled by Settings.
return propertyIDFromJavaScriptCSSPropertyName(propertyName, nullptr);
}
const Settings* CSSStyleDeclaration::settings() const
{
return parentElement() ? &parentElement()->document().settings() : nullptr;
}
Optional<Variant<String, double>> CSSStyleDeclaration::namedItem(const AtomString& propertyName)
{
// FIXME: This is going to return incorrect results for css properties disabled by Settings if settings() returns nullptr.
auto propertyID = propertyIDFromJavaScriptCSSPropertyName(propertyName, settings());
if (!propertyID)
return WTF::nullopt;
if (auto value = getPropertyCSSValueInternal(propertyID))
return Variant<String, double> { value->cssText() };
// If the property is a shorthand property (such as "padding"), it can only be accessed using getPropertyValue.
return Variant<String, double> { getPropertyValueInternal(propertyID) };
}
ExceptionOr<void> CSSStyleDeclaration::setNamedItem(const AtomString& propertyName, String value, bool& propertySupported)
{
// FIXME: This is going to return incorrect results for css properties disabled by Settings if settings() returns nullptr.
auto propertyID = propertyIDFromJavaScriptCSSPropertyName(propertyName, settings());
if (!propertyID) {
propertySupported = false;
return { };
}
propertySupported = true;
bool important = false;
if (DeprecatedGlobalSettings::shouldRespectPriorityInCSSAttributeSetters()) {
auto importantIndex = value.findIgnoringASCIICase("!important");
if (importantIndex && importantIndex != notFound) {
important = true;
value = value.left(importantIndex - 1);
}
}
auto setPropertyInternalResult = setPropertyInternal(propertyID, value, important);
if (setPropertyInternalResult.hasException())
return setPropertyInternalResult.releaseException();
return { };
}
Vector<AtomString> CSSStyleDeclaration::supportedPropertyNames() const
{
static unsigned numNames = 0;
static const AtomString* const cssPropertyNames = [this] {
String names[numCSSProperties];
for (int i = 0; i < numCSSProperties; ++i) {
CSSPropertyID id = static_cast<CSSPropertyID>(firstCSSProperty + i);
if (isEnabledCSSProperty(id) && isCSSPropertyEnabledBySettings(id, settings()))
names[numNames++] = getJSPropertyName(id);
}
std::sort(&names[0], &names[numNames], WTF::codePointCompareLessThan);
auto* identifiers = new AtomString[numNames];
for (unsigned i = 0; i < numNames; ++i)
identifiers[i] = names[i];
return identifiers;
}();
Vector<AtomString> result;
result.reserveInitialCapacity(numNames);
for (unsigned i = 0; i < numNames; ++i)
result.uncheckedAppend(cssPropertyNames[i]);
return result;
}
String CSSStyleDeclaration::cssFloat()
{
return getPropertyValueInternal(CSSPropertyFloat);
}
ExceptionOr<void> CSSStyleDeclaration::setCssFloat(const String& value)
{
auto result = setPropertyInternal(CSSPropertyFloat, value, false /* important */);
if (result.hasException())
return result.releaseException();
return { };
}
}