| Index: third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html b/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
|
| index cd2f5f1a2b2104d8233920d248de5bc539ab9897..1a999478f20850d7c02c8182c012ec31b1a3599e 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/cookie-resource-match.html
|
| @@ -54,7 +54,7 @@ function test() {
|
| for (var i = 0; i < cookies.length; ++i) {
|
| var cookieResult = [];
|
| for (var j = 0; j < resourceURLs.length; ++j) {
|
| - if (WebInspector.Cookies.cookieMatchesResourceURL(cookies[i], resourceURLs[j]))
|
| + if (SDK.Cookies.cookieMatchesResourceURL(cookies[i], resourceURLs[j]))
|
| cookieResult.push(j);
|
| }
|
| InspectorTest.addResult("[" + cookieResult + "]");
|
| @@ -75,7 +75,7 @@ function test() {
|
| secure: secure,
|
| session: true
|
| };
|
| - return WebInspector.Cookies._parseProtocolCookie(WebInspector.targetManager.mainTarget(), protocolCookie);
|
| + return SDK.Cookies._parseProtocolCookie(SDK.targetManager.mainTarget(), protocolCookie);
|
| }
|
| }
|
| </script>
|
|
|