diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2017-06-27 06:07:23 +0000 |
commit | 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch) | |
tree | 46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/css/CSSPropertySourceData.cpp | |
parent | 32761a6cee1d0dee366b885b7b9c777e67885688 (diff) | |
download | WebKitGtk-tarball-master.tar.gz |
webkitgtk-2.16.5HEADwebkitgtk-2.16.5master
Diffstat (limited to 'Source/WebCore/css/CSSPropertySourceData.cpp')
-rw-r--r-- | Source/WebCore/css/CSSPropertySourceData.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
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)) { |