| Index: third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| index 8ced299e119e36102b46e9c77918671274d329c0..8528137be78d62099bd41ce4e6b038e9d3fdd890 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| @@ -734,6 +734,12 @@ TEST_F(WebPluginContainerTest, CompositedPluginSPv2) {
|
| static_cast<const CompositedPlugin*>(container->plugin());
|
|
|
| std::unique_ptr<PaintController> paintController = PaintController::create();
|
| + PaintChunkProperties properties;
|
| + properties.transform = TransformPaintPropertyNode::root();
|
| + properties.clip = ClipPaintPropertyNode::root();
|
| + properties.effect = EffectPaintPropertyNode::root();
|
| + properties.scroll = ScrollPaintPropertyNode::root();
|
| + paintController->updateCurrentPaintChunkProperties(nullptr, properties);
|
| GraphicsContext graphicsContext(*paintController);
|
| container->paint(graphicsContext, CullRect(IntRect(10, 10, 400, 300)));
|
| paintController->commitNewDisplayItems();
|
|
|