Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Unified Diff: third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
index 1ea7fdb79f66740b471f8fe785ad155b729ee14f..0e4433bd030db02ad7c360ceafb6c98ad6f5b6d9 100644
--- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
+++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-setPropertyValue.html
@@ -29,7 +29,7 @@ function checkNegativeZero()
function test()
{
var obj1, obj2;
- var nameFoo = WebInspector.RemoteObject.toCallArgument("foo");
+ var nameFoo = SDK.RemoteObject.toCallArgument("foo");
InspectorTest.runTestSuite([
function testSetUp(next)
@@ -131,12 +131,12 @@ function test()
function step1(error)
{
- obj1.setPropertyValue(WebInspector.RemoteObject.toCallArgument("foo1"), "Infinity", step2);
+ obj1.setPropertyValue(SDK.RemoteObject.toCallArgument("foo1"), "Infinity", step2);
}
function step2(error)
{
- obj1.setPropertyValue(WebInspector.RemoteObject.toCallArgument("foo2"), "-Infinity", step3);
+ obj1.setPropertyValue(SDK.RemoteObject.toCallArgument("foo2"), "-Infinity", step3);
}
function step3(error)

Powered by Google App Engine
This is Rietveld 408576698