From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/WebCore/css/CSSPropertySourceData.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Source/WebCore/css/CSSPropertySourceData.cpp') diff --git a/Source/WebCore/css/CSSPropertySourceData.cpp b/Source/WebCore/css/CSSPropertySourceData.cpp index 7b53c51db..3346148f5 100644 --- a/Source/WebCore/css/CSSPropertySourceData.cpp +++ b/Source/WebCore/css/CSSPropertySourceData.cpp @@ -55,10 +55,11 @@ unsigned SourceRange::length() const return end - start; } -CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range) +CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range) : name(name) , value(value) , important(important) + , disabled(disabled) , parsedOk(parsedOk) , range(range) { @@ -68,15 +69,17 @@ CSSPropertySourceData::CSSPropertySourceData(const CSSPropertySourceData& other) : name(other.name) , value(other.value) , important(other.important) + , disabled(other.disabled) , parsedOk(other.parsedOk) , range(other.range) { } CSSPropertySourceData::CSSPropertySourceData() - : name("") - , value("") + : name(emptyString()) + , value(emptyString()) , important(false) + , disabled(false) , parsedOk(false) , range(SourceRange(0, 0)) { -- cgit v1.2.1