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

Unified Diff: third_party/WebKit/PerformanceTests/ShadowDOM/v1-distribution.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/PerformanceTests/ShadowDOM/v1-distribution.html
diff --git a/third_party/WebKit/PerformanceTests/ShadowDOM/v1-distribution.html b/third_party/WebKit/PerformanceTests/ShadowDOM/v1-distribution.html
index a3d9d6248a3474360f46c43da72dc288d9bb9c3b..9f392778d7dfd90729cb0f974a8d404bafe5d953 100644
--- a/third_party/WebKit/PerformanceTests/ShadowDOM/v1-distribution.html
+++ b/third_party/WebKit/PerformanceTests/ShadowDOM/v1-distribution.html
@@ -28,9 +28,9 @@ function run() {
let div = document.createElement('div');
for (let i = 0; i < loops; ++i) {
host.appendChild(div);
- slot.getAssignedNodes({flatten: true});
+ slot.assignedNodes({flatten: true});
host.removeChild(div);
- slot.getAssignedNodes({flatten: true});
+ slot.assignedNodes({flatten: true});
}
}

Powered by Google App Engine
This is Rietveld 408576698