| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty.html
|
| deleted file mode 100644
|
| index 40c6fe1ebbc872367c5f78d4ef4d1f10c391edd1..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<!DOCTYPE html>
|
| -
|
| -<script src="../../../resources/js-test.js"></script>
|
| -
|
| -<div id="host">
|
| - <div id="inside"></div>
|
| -</div>
|
| -
|
| -<script>
|
| -description("getComputedStyle should update style if the parent node in the flat tree needs a recalc.");
|
| -
|
| -var root = document.getElementById("host").createShadowRoot();
|
| -var wrapper = root.appendChild(document.createElement("div"));
|
| -wrapper.appendChild(document.createElement("content"));
|
| -wrapper.offsetTop;
|
| -wrapper.style.color = 'red';
|
| -var inside = document.getElementById("inside");
|
| -shouldBeEqualToString("getComputedStyle(inside).color", "rgb(255, 0, 0)");
|
| -</script>
|
|
|