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

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

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Omit split CLs Created 7 years, 5 months 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
Index: Source/core/css/CSSComputedStyleDeclaration.cpp
diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
index a0e8c8c2c3e750cb632db338224aa64cc4df1632..05d08ade78658ab2ac2eb9e39ee7cd931804d53f 100644
--- a/Source/core/css/CSSComputedStyleDeclaration.cpp
+++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
@@ -2694,6 +2694,12 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
case CSSPropertyBackgroundRepeatY:
break;
+#if ENABLE(CSS_CALLBACKS)
abarth-chromium 2013/07/12 23:44:11 No need for ENABLE macros. We're aiming for one c
Jeffrey Yasskin 2013/07/16 00:38:51 Great! Removed all of them.
+ case CSSPropertyInternalCallback:
+ // This property is hidden from the web.
+ return 0;
+#endif
+
/* Unimplemented CSS 3 properties (including CSS3 shorthand properties) */
case CSSPropertyWebkitTextEmphasis:
case CSSPropertyTextLineThroughColor:

Powered by Google App Engine
This is Rietveld 408576698