| Index: third_party/WebKit/LayoutTests/inspector/sources/source-code-diff.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/source-code-diff.html b/third_party/WebKit/LayoutTests/inspector/sources/source-code-diff.html
|
| index 09f0662e5a08c5035db800a74a9e06b7a9ffab73..452675253c91105bea0485a7132f4202840ccb5a 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/source-code-diff.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/source-code-diff.html
|
| @@ -22,7 +22,7 @@ function test()
|
|
|
| function onBefore(beforeFrame)
|
| {
|
| - InspectorTest.addSniffer(WebInspector.SourceCodeDiff.prototype, "_decorationsSetForTest", decorationsSet);
|
| + InspectorTest.addSniffer(Sources.SourceCodeDiff.prototype, "_decorationsSetForTest", decorationsSet);
|
| beforeFrame.setContent(textAfter);
|
| }
|
|
|
| @@ -35,11 +35,11 @@ function test()
|
| {
|
| var type = decoration[1].type;
|
| var name = "Unknown";
|
| - if (type === WebInspector.SourceCodeDiff.GutterDecorationType.Insert)
|
| + if (type === Sources.SourceCodeDiff.GutterDecorationType.Insert)
|
| name = "Insert";
|
| - else if (type === WebInspector.SourceCodeDiff.GutterDecorationType.Delete)
|
| + else if (type === Sources.SourceCodeDiff.GutterDecorationType.Delete)
|
| name = "Delete";
|
| - else if (type === WebInspector.SourceCodeDiff.GutterDecorationType.Modify)
|
| + else if (type === Sources.SourceCodeDiff.GutterDecorationType.Modify)
|
| name = "Modify";
|
|
|
| InspectorTest.addResult(decoration[0] + ":" + name)
|
|
|