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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html

Issue 2450663004: DevTools: do not allow using 'this' before call into super. (Closed)
Patch Set: rebaselined Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt-hint.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
index defb7f692a10e9eddb455d5d8450cdadda18d4f2..357d7765fb6f99d44e11cce1328529aba59e6aca 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt.html
@@ -6,7 +6,8 @@
<script>
function test() {
var suggestions = ["heyoo", "hey it's a suggestion", "hey another suggestion"];
- var prompt = new WebInspector.TextPrompt((element, range, force, callback) => callback(suggestions));
+ var prompt = new WebInspector.TextPrompt();
+ prompt.initialize((element, range, force, callback) => callback(suggestions));
prompt.setSuggestBoxEnabled(true);
var div = document.createElement("div");
WebInspector.inspectorView.element.appendChild(div);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector-unit/text-prompt-hint.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698