| Index: third_party/WebKit/Source/core/paint/PaintLayerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerTest.cpp b/third_party/WebKit/Source/core/paint/PaintLayerTest.cpp
|
| index 0a48768a1f739af888a8f95d706c77185cb52e0d..83105a973717a1846cc08ee39155150c88e55804 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerTest.cpp
|
| @@ -329,6 +329,16 @@ TEST_P(PaintLayerTest, SubsequenceCachingSVGRoot) {
|
| EXPECT_TRUE(svgroot->SupportsSubsequenceCaching());
|
| }
|
|
|
| +TEST_P(PaintLayerTest, SubsequenceCachingMuticol) {
|
| + SetBodyInnerHTML(
|
| + "<div style='columns: 2'>"
|
| + " <svg id='svgroot' style='position: relative'></svg>"
|
| + "</div>");
|
| +
|
| + PaintLayer* svgroot = GetPaintLayerByElementId("svgroot");
|
| + EXPECT_FALSE(svgroot->SupportsSubsequenceCaching());
|
| +}
|
| +
|
| TEST_P(PaintLayerTest, HasDescendantWithClipPath) {
|
| SetBodyInnerHTML(
|
| "<div id='parent' style='position:relative'>"
|
|
|