| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-resolve-identifiers.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-resolve-identifiers.html
 | 
| similarity index 75%
 | 
| copy from third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html
 | 
| copy to third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-resolve-identifiers.html
 | 
| index f68dd9755a5bb13a49b85d725a23b3f225449ff9..4bf2d5d890607c2b7891b3b0b13c63664ad05b04 100644
 | 
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-minified-variables.html
 | 
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-scope-resolve-identifiers.html
 | 
| @@ -2,21 +2,14 @@
 | 
|  <head>
 | 
|  <script src="../../../http/tests/inspector/inspector-test.js"></script>
 | 
|  <script src="../../../http/tests/inspector/debugger-test.js"></script>
 | 
| -<script src="resources/resolve-variable-names-compressed.js"></script>
 | 
| +<script src="resources/resolve-identifiers.js"></script>
 | 
|  <script>
 | 
|  function test()
 | 
|  {
 | 
|      Runtime.experiments.enableForTest("resolveVariableNames");
 | 
|      InspectorTest.startDebuggerTest(() => InspectorTest.runTestFunctionAndWaitUntilPaused());
 | 
|  
 | 
| -    var resolvedScopes = 0;
 | 
| -    InspectorTest.addSniffer(WebInspector.SourceMapNamesResolver, "_scopeResolvedForTest", onScopeResolved, true);
 | 
| -
 | 
| -    function onScopeResolved()
 | 
| -    {
 | 
| -        if (++resolvedScopes === 2)
 | 
| -            onAllScopesResolved();
 | 
| -    }
 | 
| +    InspectorTest.addSniffer(WebInspector.SourceMapNamesResolver, "_scopeResolvedForTest", onAllScopesResolved, true);
 | 
|  
 | 
|      function onAllScopesResolved()
 | 
|      {
 | 
| 
 |