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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/compare-document-position.html

Issue 1684533002: Rename "tree of trees" to "composed tree". (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/compare-document-position.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/compare-document-position.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/compare-document-position.html
index ea7e52aeeaac5f7a48b05b096824076d3ef1dc88..3bd8b3dfa232812bf548f3662823d0b643454653 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/compare-document-position.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/compare-document-position.html
@@ -29,10 +29,10 @@ function testCompareDocumentPosition()
a1 = document.getElementById('a1');
a2 = document.getElementById('a2');
a3 = document.getElementById('a3');
- b1 = getNodeInTreeOfTrees('a2/b1');
- b2 = getNodeInTreeOfTrees('a2/b2');
- b3 = getNodeInTreeOfTrees('a2/b3');
- c1 = getNodeInTreeOfTrees('a3/c1');
+ b1 = getNodeInComposedTree('a2/b1');
+ b2 = getNodeInComposedTree('a2/b2');
+ b3 = getNodeInComposedTree('a2/b3');
+ c1 = getNodeInComposedTree('a3/c1');
shouldBe('a1.compareDocumentPosition(a2)', 'Node.DOCUMENT_POSITION_CONTAINED_BY | Node.DOCUMENT_POSITION_FOLLOWING');
shouldBe('a2.compareDocumentPosition(a1)', 'Node.DOCUMENT_POSITION_CONTAINS | Node.DOCUMENT_POSITION_PRECEDING');

Powered by Google App Engine
This is Rietveld 408576698