Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Unified Diff: Source/core/css/CSSUnsetValue.cpp

Issue 775153002: Implement unset value handling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSUnsetValue.h ('k') | Source/core/css/CSSValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSUnsetValue.cpp
diff --git a/Source/core/css/resolver/StyleResolverParentScope.cpp b/Source/core/css/CSSUnsetValue.cpp
similarity index 62%
copy from Source/core/css/resolver/StyleResolverParentScope.cpp
copy to Source/core/css/CSSUnsetValue.cpp
index 76cae0e07a77e9aac748018e46172c4601020be3..e3e8903d4be940ecfa827358c319d40ba74dfb64 100644
--- a/Source/core/css/resolver/StyleResolverParentScope.cpp
+++ b/Source/core/css/CSSUnsetValue.cpp
@@ -3,11 +3,15 @@
// found in the LICENSE file.
#include "config.h"
+#include "core/css/CSSUnsetValue.h"
-#include "core/css/resolver/StyleResolverParentScope.h"
+#include "wtf/text/WTFString.h"
namespace blink {
-StyleResolverParentScope* StyleResolverParentScope::s_currentScope = 0;
+String CSSUnsetValue::customCSSText() const
+{
+ return "unset";
+}
} // namespace blink
« no previous file with comments | « Source/core/css/CSSUnsetValue.h ('k') | Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698