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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html

Issue 2479943002: DevTools: Don't show autocomplete when the user is typing a number (Closed)
Patch Set: Created 4 years, 1 month 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/inspector/console/console-correct-suggestions-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html b/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
index 6a8d3c11fca735fde0e9ed6e164a59badc6b31ac..06f1071a68e735760b5e87792fa5f2645fb70496 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
@@ -49,7 +49,9 @@ function test()
() => testCompletions("templateString`asdf`", "should", ["shouldNotFindThis"]),
() => testCompletions("window.document.", "BODY", ["body"]),
() => testCompletions("window.", "dOcUmE", ["document"]),
- () => testCompletions("window.", "node", ["NodeList", "AudioNode", "GainNode"])
+ () => testCompletions("window.", "node", ["NodeList", "AudioNode", "GainNode"]),
+ () => testCompletions("", "32", ["Float32Array", "Int32Array"]),
+ () => testCompletions("window.", "32", ["Float32Array", "Int32Array"])
]).then(InspectorTest.completeTest);
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698