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

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

Issue 2478563002: DevTools: Substring autocomplete in Console and StylesSideBar. (Closed)
Patch Set: tests 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 156c23aca00b9712277cfd3b41c17e581e321a9a..6a8d3c11fca735fde0e9ed6e164a59badc6b31ac 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-correct-suggestions.html
@@ -46,7 +46,10 @@ function test()
() => testCompletions('document.body.', "inner", ["innerText", "innerHTML"]),
() => testCompletions('document["body"][window.', "do", ["document"]),
() => testCompletions('document["body"][window["document"].body.childNodes[0].', "text", ["textContent"]),
- () => testCompletions("templateString`asdf`", "should", ["shouldNotFindThis"])
+ () => testCompletions("templateString`asdf`", "should", ["shouldNotFindThis"]),
+ () => testCompletions("window.document.", "BODY", ["body"]),
+ () => testCompletions("window.", "dOcUmE", ["document"]),
+ () => testCompletions("window.", "node", ["NodeList", "AudioNode", "GainNode"])
]).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