| Index: third_party/WebKit/Source/devtools/front_end/Tests.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/Tests.js b/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| index 5a96d0e64bbe85d305b1d131ecc96f331013dc26..6ae3a5588a196deeedf05232a5a6b0d990bd6d6d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/Tests.js
|
| @@ -699,21 +699,21 @@
|
|
|
| function step1() {
|
| testPreset(
|
| - Components.NetworkConditionsSelector._presets[0],
|
| + NetworkConditions.NetworkConditionsSelector.presets[0],
|
| ['offline event: online = false', 'connection change event: type = none; downlinkMax = 0'], step2);
|
| }
|
|
|
| function step2() {
|
| testPreset(
|
| - Components.NetworkConditionsSelector._presets[2],
|
| + NetworkConditions.NetworkConditionsSelector.presets[2],
|
| ['online event: online = true', 'connection change event: type = cellular; downlinkMax = 0.244140625'],
|
| step3);
|
| }
|
|
|
| function step3() {
|
| testPreset(
|
| - Components.NetworkConditionsSelector._presets[8], ['connection change event: type = wifi; downlinkMax = 30'],
|
| - test.releaseControl.bind(test));
|
| + NetworkConditions.NetworkConditionsSelector.presets[8],
|
| + ['connection change event: type = wifi; downlinkMax = 30'], test.releaseControl.bind(test));
|
| }
|
| };
|
|
|
|
|