| Index: third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| index 6e5bcd3d22dbacc3772c2d60ba25c7def667f666..44c1b8f5eb394bb806817e7ae3606eb39da9dadf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/emulation/DevicesSettingsTab.js
|
| @@ -221,7 +221,7 @@ WebInspector.DevicesSettingsTab.prototype = {
|
| */
|
| function sizeValidator(item, index, input)
|
| {
|
| - return !WebInspector.DeviceModeModel.deviceSizeValidator(input.value);
|
| + return WebInspector.DeviceModeModel.deviceSizeValidator(input.value);
|
| }
|
|
|
| /**
|
| @@ -232,7 +232,7 @@ WebInspector.DevicesSettingsTab.prototype = {
|
| */
|
| function scaleValidator(item, index, input)
|
| {
|
| - return !WebInspector.DeviceModeModel.deviceScaleFactorValidator(input.value);
|
| + return WebInspector.DeviceModeModel.deviceScaleFactorValidator(input.value);
|
| }
|
|
|
| /**
|
|
|