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

Unified Diff: third_party/WebKit/LayoutTests/shadow-dom/v1-slots-api-in-v0.html

Issue 1863413004: Rename Slot.getAssingedNodes() -> Slot.assignedNodes() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/shadow-dom/v1-slots-api-in-v0.html
diff --git a/third_party/WebKit/LayoutTests/shadow-dom/v1-slots-api-in-v0.html b/third_party/WebKit/LayoutTests/shadow-dom/v1-slots-api-in-v0.html
index 3963d42a175fc61103cd3daad7c9b7030fbaa82f..d51fae72a887f047dedee5449d437fae02be90b5 100644
--- a/third_party/WebKit/LayoutTests/shadow-dom/v1-slots-api-in-v0.html
+++ b/third_party/WebKit/LayoutTests/shadow-dom/v1-slots-api-in-v0.html
@@ -35,8 +35,8 @@ test(() => {
}, "assignedSlot");
test(() => {
- assert_array_equals(slot0.getAssignedNodes(), []);
- assert_array_equals(slot1.getAssignedNodes(), []);
- assert_array_equals(slot2.getAssignedNodes(), []);
-}, "getAssignedNodes");
+ assert_array_equals(slot0.assignedNodes(), []);
+ assert_array_equals(slot1.assignedNodes(), []);
+ assert_array_equals(slot2.assignedNodes(), []);
+}, "assignedNodes");
</script>

Powered by Google App Engine
This is Rietveld 408576698