| 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);
|
|
|
| }
|
|
|