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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-1/case-sensitive-suggestions.html

Issue 2181123002: DevTools: Remove unused parameters to TextPrompt._loadCompletions callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove toLowerCase() Created 4 years, 5 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/inspector/elements/styles-1/case-sensitive-suggestions.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/case-sensitive-suggestions.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/case-sensitive-suggestions.html
index 6d0b23e9b5f349f6ef03cd5258d2775e542445ce..8d39dd774d899c80f6c474606fb9d3cce146c594 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/case-sensitive-suggestions.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/case-sensitive-suggestions.html
@@ -31,7 +31,7 @@ function test()
proxyElement.textContent = inputText;
var selectionRange = document.createRange();
selectionRange.selectNodeContents(proxyElement);
- prompt._buildPropertyCompletions(proxyElement, inputText, inputText.length, selectionRange, true, completions);
+ prompt._buildPropertyCompletions(proxyElement, selectionRange, true, completions);
function completions(result, index)
{

Powered by Google App Engine
This is Rietveld 408576698