| Index: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3.html b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3.html
|
| index e3effe0c51b09d772e6aae2e894e718df45507ff..7cff0486dce02faab76084c5c5647d0b48bb13b5 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-dom-actions-3.html
|
| @@ -8,8 +8,8 @@
|
| function test()
|
| {
|
| // Save time on style updates.
|
| - WebInspector.StylesSidebarPane.prototype.update = function() {};
|
| - WebInspector.MetricsSidebarPane.prototype.update = function() {};
|
| + Elements.StylesSidebarPane.prototype.update = function() {};
|
| + Elements.MetricsSidebarPane.prototype.update = function() {};
|
|
|
| InspectorTest.runTestSuite([
|
| function testSetUp(next)
|
| @@ -24,7 +24,7 @@ function test()
|
| var childNodes = testNode.children();
|
| for (var i = 0; i < childNodes.length; ++i) {
|
| if (childNodes[i].nodeType() === 8) {
|
| - WebInspector.Revealer.reveal(childNodes[i]);
|
| + Common.Revealer.reveal(childNodes[i]);
|
| callback(childNodes[i]);
|
| return;
|
| }
|
|
|