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

Unified Diff: third_party/WebKit/Source/core/css/CSSPaintValue.cpp

Issue 2661323002: Implement CSSPaintValue and add a layout test. (Closed)
Patch Set: fix indent Created 3 years, 10 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: third_party/WebKit/Source/core/css/CSSPaintValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSPaintValue.cpp b/third_party/WebKit/Source/core/css/CSSPaintValue.cpp
index d93ed2427d3ac01d91fb5ad2df69035ae8745ae8..fc961ff062ebb3b3ff52a194136e395d9628138f 100644
--- a/third_party/WebKit/Source/core/css/CSSPaintValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPaintValue.cpp
@@ -47,7 +47,7 @@ PassRefPtr<Image> CSSPaintValue::image(const LayoutObject& layoutObject,
m_generator = CSSPaintImageGenerator::create(
name(), layoutObject.document(), m_paintImageGeneratorObserver);
- return m_generator->paint(layoutObject, size, zoom);
+ return m_generator->paint(layoutObject, size, zoom, m_argumentVariableData);
ikilpatrick 2017/02/16 03:19:36 should be able to parse the variable data inside t
renjieliu1 2017/02/16 04:11:14 do you think we can pass in the input argument typ
}
void CSSPaintValue::Observer::paintImageGeneratorReady() {

Powered by Google App Engine
This is Rietveld 408576698