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

Unified Diff: LayoutTests/fast/dom/shadow/hostcontext-first-child.html

Issue 210813003: Rename :ancestor to :host-context. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 6 years, 9 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: LayoutTests/fast/dom/shadow/hostcontext-first-child.html
diff --git a/LayoutTests/fast/dom/shadow/ancestor-first-child.html b/LayoutTests/fast/dom/shadow/hostcontext-first-child.html
similarity index 79%
rename from LayoutTests/fast/dom/shadow/ancestor-first-child.html
rename to LayoutTests/fast/dom/shadow/hostcontext-first-child.html
index ebccd8424d67390c09d8082e040f55a85d76ecff..4381432bdfe765906cddca3708448471e7561a4b 100644
--- a/LayoutTests/fast/dom/shadow/ancestor-first-child.html
+++ b/LayoutTests/fast/dom/shadow/hostcontext-first-child.html
@@ -7,7 +7,7 @@
</div>
<script>
-description("Test that :ancestor(:first-child) is re-evaluated when :first-child changes.");
+description("Test that :host-context(:first-child) is re-evaluated when :first-child changes.");
var test = document.getElementById("test");
var first = document.getElementById("first");
@@ -16,7 +16,7 @@ first.appendChild(
createDOM("div", {"id": "host"},
createShadowRoot(
createDOM('style', {},
- document.createTextNode(":ancestor(#first:first-child) { background-color: red; }")),
+ document.createTextNode(":host-context(#first:first-child) { background-color: red; }")),
createDOM('div', {},
document.createTextNode("You should see no red.")))));

Powered by Google App Engine
This is Rietveld 408576698