| Index: LayoutTests/inspector/geolocation-emulation-tests.html
|
| diff --git a/LayoutTests/inspector/geolocation-emulation-tests.html b/LayoutTests/inspector/geolocation-emulation-tests.html
|
| index fed8533d7ca3380cb0be0bb787841031b6ec770f..c56f2f40b1e1dd0b6db9e6b8ad9122b167014451 100644
|
| --- a/LayoutTests/inspector/geolocation-emulation-tests.html
|
| +++ b/LayoutTests/inspector/geolocation-emulation-tests.html
|
| @@ -63,34 +63,34 @@ function test()
|
| InspectorTest.runTestSuite([
|
| function testGeolocationUnavailable(next)
|
| {
|
| - InspectorTest.PageAgent.setGeolocationOverride();
|
| + InspectorTest.EmulationAgent.setGeolocationOverride();
|
| InspectorTest.addConsoleSniffer(next);
|
| InspectorTest.evaluateInPage("overrideGeolocation()");
|
| },
|
|
|
| function testOverridenGeolocation(next)
|
| {
|
| - InspectorTest.PageAgent.setGeolocationOverride(50, 100, 95);
|
| + InspectorTest.EmulationAgent.setGeolocationOverride(50, 100, 95);
|
| InspectorTest.addConsoleSniffer(next);
|
| InspectorTest.evaluateInPage("overrideGeolocation()");
|
| },
|
|
|
| function testInvalidParam(next)
|
| {
|
| - InspectorTest.PageAgent.setGeolocationOverride(true, 100, 95);
|
| + InspectorTest.EmulationAgent.setGeolocationOverride(true, 100, 95);
|
| next();
|
| },
|
|
|
| function testInvalidGeolocation(next)
|
| {
|
| - InspectorTest.PageAgent.setGeolocationOverride(200, 300, 95);
|
| + InspectorTest.EmulationAgent.setGeolocationOverride(200, 300, 95);
|
| InspectorTest.addConsoleSniffer(next);
|
| InspectorTest.evaluateInPage("overrideGeolocation()");
|
| },
|
|
|
| function testTimestampOfOverridenPosition(next)
|
| {
|
| - InspectorTest.PageAgent.setGeolocationOverride(50, 100, 95);
|
| + InspectorTest.EmulationAgent.setGeolocationOverride(50, 100, 95);
|
| InspectorTest.addConsoleSniffer(next);
|
| InspectorTest.evaluateInPage("overridenTimestampGeolocation()");
|
| }
|
|
|