| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/distribution-update-recalcs-style.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/distribution-update-recalcs-style.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/distribution-update-recalcs-style.html
|
| index 98283417d778e0ffa4bccb41b3e0e054dd3aa60c..cbb0eabd85d18510874650dd5e11f83455e156f8 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/distribution-update-recalcs-style.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/distribution-update-recalcs-style.html
|
| @@ -28,10 +28,10 @@ var sr = document.getElementById("host").createShadowRoot();
|
| sr.innerHTML = '<style>div { color: blue }</style><div><content id="contentId" select="#div-child"></content></div>';
|
|
|
| shouldBe('getColorProperty("div-child")', '"rgb(0, 0, 255)"');
|
| -shouldBe('getColorProperty("span-child")', '"rgb(255, 0, 0)"');
|
| +shouldBe('getColorProperty("span-child")', '"rgb(0, 0, 0)"');
|
|
|
| sr.getElementById("contentId").select = "#span-child";
|
| -shouldBe('getColorProperty("div-child")', '"rgb(255, 0, 0)"');
|
| +shouldBe('getColorProperty("div-child")', '"rgb(0, 0, 0)"');
|
| shouldBe('getColorProperty("span-child")', '"rgb(0, 0, 255)"');
|
|
|
| if (window.testRunner)
|
|
|