tree: 1246d7fbb42f25eb79ca520c8945d75db1452a5b [path history] [tgz]
  1. BUILD.gn
  2. device_mode_emulation_frame.ts
  3. README.md
front_end/entrypoints/device_mode_emulation_frame/README.md

Device mode emulation frame

DevTools has a feature to simulate device modes in the browser page. The emulation is implemented using a separate frame, called the “device mode emulation frame”.

When a user turns on device mode emulation, a top bar with pre-defined device modes and page width/height is shown. The UI is implemented in front_end/panels/emulation/. However, the code that controls the UI runs in the context of the devtools_app.

As such, the JavaScript that runs in the devtools_app frame controls the UI in a separate frame. This has several implications:

  1. It is not possible to inspect the device mode emulation frame with DevTools itself
  2. The device mode emulation frame communicates with devtools_app via window.opener
  3. Since the communication is cross-frame, it can only use web API's that support cross-frame communication
  4. Not all features that are available in the standard UI of DevTools can be reused in the device mode emulation frame. Some features are explicitly reconstructed in the other frame, to avoid cross-frame limitations
  5. Whenever the device mode emulation frame needs to access information that is available in devtools_app (such as settings), it needs to access the information in the correct frame. For example, any information coming from localStorage has to be mediated via API‘s in devtools_app. Typically, these API’s live in front_end/panels/emulation/AdvancedApp.ts