| Index: third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html b/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html
|
| index 91a84b70a65e8cf008785ad2f6542be0da4bd36f..36867078cae31b2831dd26e91399b57824e7a341 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html
|
| @@ -36,6 +36,12 @@ div {}
|
|
|
| function test()
|
| {
|
| + InspectorTest.addSniffer(WebInspector.CSSModel.prototype, "_originalContentRequestedForTest", onOriginalContentRequested, true);
|
| + function onOriginalContentRequested(header)
|
| + {
|
| + InspectorTest.addResult("original content loaded for header: " + header.sourceURL);
|
| + }
|
| +
|
| var headers = InspectorTest.cssModel.styleSheetHeaders();
|
| InspectorTest.runTestSuite([
|
| function testSetStyle(next)
|
|
|