| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
|
| index 2c80a209df3f82be3938609d2ae9f2f98f71a448..a13ecb497019d7632565af6ee140c09cd2ca36b9 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
|
| @@ -72,7 +72,7 @@ function test()
|
| var uiSourceCodes = panel._workspace.uiSourceCodes();
|
| var ignored = true;
|
| for (var i = 0; i < uiSourceCodes.length && ignored; ++i) {
|
| - if (uiSourceCodes[i].originURL().indexOf("inlineScriptURL.js") !== -1)
|
| + if (uiSourceCodes[i].url().indexOf("inlineScriptURL.js") !== -1)
|
| ignored = false;
|
| }
|
| if (ignored)
|
| @@ -104,7 +104,7 @@ function test()
|
| var panel = WebInspector.panels.sources;
|
| var uiSourceCodes = panel._workspace.uiSourceCodes();
|
| for (var i = 0; i < uiSourceCodes.length; ++i) {
|
| - if (uiSourceCodes[i].originURL().indexOf("scriptWithPoorSourceURL.js") !== -1)
|
| + if (uiSourceCodes[i].url().indexOf("scriptWithPoorSourceURL.js") !== -1)
|
| InspectorTest.addResult("FAILED: poor sourceURL comment in script was used as a script name");
|
| }
|
| next();
|
|
|