| Index: third_party/WebKit/LayoutTests/inspector/audits/audits-panel-noimages-functional.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/audits/audits-panel-noimages-functional.html b/third_party/WebKit/LayoutTests/inspector/audits/audits-panel-noimages-functional.html
|
| index 5596e66dfed7b35520a87b505ccdf184ea93e5dc..edfdb0240d46b8ce083a560e2cf670965e81a26a 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/audits/audits-panel-noimages-functional.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/audits/audits-panel-noimages-functional.html
|
| @@ -22,14 +22,14 @@ JSON = {};
|
| var test = function()
|
| {
|
| InspectorTest.reloadPage();
|
| - InspectorTest.addSniffer(WebInspector.CSSModel.prototype, "_styleSheetAdded", onStyleSheetAdded, true);
|
| + InspectorTest.addSniffer(SDK.CSSModel.prototype, "_styleSheetAdded", onStyleSheetAdded, true);
|
|
|
| var pendingStyleSheetsCount = 5;
|
| function onStyleSheetAdded()
|
| {
|
| if (--pendingStyleSheetsCount)
|
| return;
|
| - WebInspector.AuditRuleResult.resourceDomain = function() {
|
| + Audits.AuditRuleResult.resourceDomain = function() {
|
| return "[domain]";
|
| };
|
|
|
|
|