Index: third_party/WebKit/LayoutTests/fast/dom/shadow/attr-title-inherit.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/attr-title-inherit.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/attr-title-inherit.html |
index 1bf5a70a8ad9c12dd29a6affbd371c8a60d7c631..7726cc0780dae2860828c985b840d30d8f225bba 100644 |
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/attr-title-inherit.html |
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/attr-title-inherit.html |
@@ -31,27 +31,27 @@ testTooltipTextInShadow("The title of elements in shadow inherits from the docum |
host = document.getElementById("distributed"); |
createShadowRootWithInnerHtml(host, "<div title='PASS-distributed'><content></content></div>"); |
-testTooltipTextInShadow("The title of distributed elements inherits in the composed tree", host.querySelector(".target"), "PASS-distributed"); |
+testTooltipTextInShadow("The title of distributed elements inherits in the flat tree", host.querySelector(".target"), "PASS-distributed"); |
host = document.getElementById("multiple"); |
createShadowRootWithInnerHtml(host, "<div title='NG-multiple'><content></content></div>"); |
createShadowRootWithInnerHtml(host, "<div title='PASS-multiple'><content></content></div>"); |
-testTooltipTextInShadow("The title of distributed elements inherits in the composed tree (multiple shadow roots)", host.querySelector(".target"), "PASS-multiple"); |
+testTooltipTextInShadow("The title of distributed elements inherits in the flat tree (multiple shadow roots)", host.querySelector(".target"), "PASS-multiple"); |
host = document.getElementById("multilevel"); |
var host2ndLevel = createShadowRootWithInnerHtml(host, "<div title='NG-multilevel'><content></content></div>").firstChild; |
createShadowRootWithInnerHtml(host2ndLevel, "<div title='PASS-multilevel'><content></content></div>"); |
-testTooltipTextInShadow("The title of distributed elements inherits in the composed tree (multiple levels)", host.querySelector(".target"), "PASS-multilevel"); |
+testTooltipTextInShadow("The title of distributed elements inherits in the flat tree (multiple levels)", host.querySelector(".target"), "PASS-multilevel"); |
host = document.getElementById("older"); |
root = createShadowRootWithInnerHtml(host, style + "<div class=target>Older</div>"); |
createShadowRootWithInnerHtml(host, "<div title='PASS-older'><shadow></shadow></div>"); |
-testTooltipTextInShadow("The title of elements in older shadow roots inherits in the composed tree", root.querySelector(".target"), "PASS-older"); |
+testTooltipTextInShadow("The title of elements in older shadow roots inherits in the flat tree", root.querySelector(".target"), "PASS-older"); |
host = document.getElementById("redistributed"); |
createShadowRootWithInnerHtml(host, "<content></content>"); |
createShadowRootWithInnerHtml(host, "<div title='PASS-redistributed'><shadow></shadow></div>"); |
-testTooltipTextInShadow("The title of re-distributed elements inherits in the composed tree (multiple shadow roots)", host.querySelector(".target"), "PASS-redistributed"); |
+testTooltipTextInShadow("The title of re-distributed elements inherits in the flat tree (multiple shadow roots)", host.querySelector(".target"), "PASS-redistributed"); |
function testTooltipTextInShadow(description, element, expected) { |
if (!window.eventSender || !window.testRunner) |