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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty.html

Issue 1675193002: Rename 'composed tree' to 'flat tree' in the layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/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>

Powered by Google App Engine
This is Rietveld 408576698