Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/device-mode.js |
| diff --git a/third_party/WebKit/LayoutTests/inspector/device-mode.js b/third_party/WebKit/LayoutTests/inspector/device-mode.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e7e412384b806dd8d48d59f81f0b27f9c0f163ae |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/inspector/device-mode.js |
| @@ -0,0 +1,32 @@ |
| +var initialize_DeviceMode = function() |
|
dgozman
2016/10/19 00:42:45
- device-mode-test.js
- let's put this and test un
dgozman
2016/10/21 20:32:56
What about this one?
luoe
2016/10/22 01:58:02
Sorry, I forgot to do the rename here, my bad. It
|
| +{ |
| + InspectorTest.buildFakePhone = function(overrides) |
| + { |
| + var StandardPhoneJSON = { |
| + "show-by-default": false, |
| + "title": "Fake Phone 1", |
| + "screen": { |
| + "horizontal": { "width": 480, "height": 320 }, |
| + "device-pixel-ratio": 2, |
| + "vertical": { "width": 320, "height": 480 } |
| + }, |
| + "capabilities": ["touch", "mobile"], |
| + "user-agent": "fakeUserAgent", |
| + "type": "phone", |
| + "modes": [ |
| + { |
| + "title": "default", |
| + "orientation": "vertical", |
| + "insets": { "left": 0, "top": 0, "right": 0, "bottom": 0 } |
| + }, |
| + { |
| + "title": "default", |
| + "orientation": "horizontal", |
| + "insets": { "left": 0, "top": 0, "right": 0, "bottom": 0 } |
| + } |
| + ] |
| + }; |
| + var json = Object.assign(StandardPhoneJSON, overrides || {}); |
| + return WebInspector.EmulatedDevice.fromJSONV1(json); |
| + } |
| +} |