2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2002-07-08 11:11:59 +04:00
|
|
|
|
2006-03-25 08:47:31 +03:00
|
|
|
/* DOM object representing lists of values in DOM computed style */
|
|
|
|
|
2002-07-08 11:11:59 +04:00
|
|
|
#include "nsDOMCSSValueList.h"
|
2018-05-08 10:20:43 +03:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2015-12-24 03:25:43 +03:00
|
|
|
#include "mozilla/Move.h"
|
2012-10-01 20:49:41 +04:00
|
|
|
|
|
|
|
using namespace mozilla;
|
2018-01-11 11:17:57 +03:00
|
|
|
using namespace mozilla::dom;
|
2002-07-08 11:11:59 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsDOMCSSValueList::nsDOMCSSValueList(bool aCommaDelimited, bool aReadonly)
|
2012-10-01 20:49:41 +04:00
|
|
|
: CSSValue(), mCommaDelimited(aCommaDelimited), mReadonly(aReadonly)
|
2002-07-08 11:11:59 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-08 10:20:43 +03:00
|
|
|
nsDOMCSSValueList::~nsDOMCSSValueList() = default;
|
2002-07-08 11:11:59 +04:00
|
|
|
|
2012-10-01 20:49:41 +04:00
|
|
|
void
|
2015-12-24 03:25:43 +03:00
|
|
|
nsDOMCSSValueList::AppendCSSValue(already_AddRefed<CSSValue> aValue)
|
2002-07-08 11:11:59 +04:00
|
|
|
{
|
2015-12-24 03:25:43 +03:00
|
|
|
RefPtr<CSSValue> val = aValue;
|
2018-05-30 22:15:35 +03:00
|
|
|
mCSSValues.AppendElement(std::move(val));
|
2002-07-08 11:11:59 +04:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:57 +03:00
|
|
|
void
|
2002-07-08 11:11:59 +04:00
|
|
|
nsDOMCSSValueList::GetCssText(nsAString& aCssText)
|
|
|
|
{
|
|
|
|
aCssText.Truncate();
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t count = mCSSValues.Length();
|
2002-07-08 11:11:59 +04:00
|
|
|
|
|
|
|
nsAutoString separator;
|
|
|
|
if (mCommaDelimited) {
|
2004-06-17 04:13:25 +04:00
|
|
|
separator.AssignLiteral(", ");
|
2002-07-08 11:11:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-01-04 19:02:17 +04:00
|
|
|
separator.Assign(char16_t(' '));
|
2002-07-08 11:11:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString tmpStr;
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = 0; i < count; ++i) {
|
2012-10-01 20:49:41 +04:00
|
|
|
CSSValue *cssValue = mCSSValues[i];
|
2002-07-08 11:11:59 +04:00
|
|
|
NS_ASSERTION(cssValue, "Eek! Someone filled the value list with null CSSValues!");
|
2012-10-01 20:49:41 +04:00
|
|
|
ErrorResult dummy;
|
2002-07-08 11:11:59 +04:00
|
|
|
if (cssValue) {
|
2012-10-01 20:49:41 +04:00
|
|
|
cssValue->GetCssText(tmpStr, dummy);
|
2002-07-08 11:11:59 +04:00
|
|
|
|
|
|
|
if (tmpStr.IsEmpty()) {
|
|
|
|
|
|
|
|
#ifdef DEBUG_caillon
|
|
|
|
NS_ERROR("Eek! An empty CSSValue! Bad!");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this isn't the first item in the list, then
|
2005-11-21 01:05:24 +03:00
|
|
|
// it's ok to append a separator.
|
2002-07-08 11:11:59 +04:00
|
|
|
if (!aCssText.IsEmpty()) {
|
|
|
|
aCssText.Append(separator);
|
|
|
|
}
|
|
|
|
aCssText.Append(tmpStr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-01 20:49:41 +04:00
|
|
|
void
|
2018-01-11 11:17:57 +03:00
|
|
|
nsDOMCSSValueList::GetCssText(nsString& aCssText, ErrorResult& aRv)
|
2012-10-01 20:49:41 +04:00
|
|
|
{
|
2018-01-11 11:17:57 +03:00
|
|
|
GetCssText(aCssText);
|
2012-10-01 20:49:41 +04:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:57 +03:00
|
|
|
void
|
|
|
|
nsDOMCSSValueList::SetCssText(const nsAString& aText, ErrorResult& aRv)
|
2002-07-08 11:11:59 +04:00
|
|
|
{
|
|
|
|
if (mReadonly) {
|
2018-01-11 11:17:57 +03:00
|
|
|
aRv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
2002-07-08 11:11:59 +04:00
|
|
|
}
|
|
|
|
|
2017-10-25 10:37:02 +03:00
|
|
|
MOZ_ASSERT_UNREACHABLE("Can't SetCssText yet: please write me!");
|
2002-07-08 11:11:59 +04:00
|
|
|
}
|
|
|
|
|
2012-10-01 20:49:41 +04:00
|
|
|
uint16_t
|
|
|
|
nsDOMCSSValueList::CssValueType() const
|
|
|
|
{
|
2018-05-08 10:20:43 +03:00
|
|
|
return CSSValue::CSS_VALUE_LIST;
|
2012-10-01 20:49:41 +04:00
|
|
|
}
|