WebReplayRoadmap

Replay was an early-stage experiment and is no longer part of Firefox.

This document describes existing, planned, and potential features for the Firefox developer tools that are based on Web Replay, along with their UI. The low level, yet flexible architecture (described here) provides an extremely powerful platform for implementing debugging and analysis features. We would like to use Web Replay to radically improve not just the debugging experience but the entire web development experience. To that end, this document will be revised over time as we find new and better ways of helping developers.

Time Travel Features

More features are planned for the timeline, as described below.

Retroactive Console Logging

Console logging is one of the primary tools most developers use to debug a page. Seeing messages in the console provides a simple and intuitive view into the order in which events have happened. Without time travel, using the console requires repeatedly updating the source or the debugger's log points, reloading, and reproducing the bug. This is time consuming, especially when the bug only reproduces intermittently.

Retroactive console logging offers a large improvement to this workflow. The bug only needs to be reproduced in a recording tab once, and then console logs can be added which apply throughout the entire recording. This is based on the logpoints feature in the debugger, which can be enabled with the devtools.debugger.features.log-points preference. Set a breakpoint and right click on it to change it to a log point.

In a non-recording tab this will update the console whenever the log point's location executes in the future. In a recording tab, however, this will update the console with messages for every time the location has ever been hit. This requires scanning the recording and the console will not update immediately. These messages will show up on the timeline and can be seeked to in the same way as other console messages.

DOM/CSS Integration (partially implemented)

When paused, the Inspector panel can be used to inspect the DOM and CSS state of the page. New features are possible with time travel, though, which would be nice to support:

  • Supporting the debugger's event breakpoints would allow searching the recording for places where particular DOM events occur, and -- in the same manner as logpoints -- logging them to the console and allowing them to be seeked to later.
  • Similarly, when the debugger supports DOM mutation breakpoints (bug 1547692), the recording can be searched for DOM mutations, and mutations can be logged to the console and seeked to later.
  • Allowing CSS to be changed while paused somewhere in the recording and update graphics with the effects of those changes.

Object Watching (not yet implemented)

It would be nice to log the changes to a specific object or one of its properties, so that the points of those changes can be seeked to later.

Bookmarks (not yet implemented)

It would be nice to be able to bookmark points in the recording so that they show up on the timeline and can be seeked to later.

Code Path Highlighting (not yet implemented)

When paused in a frame, the code path taken through the frame (the lines/expressions executed) could be highlighted somehow, which would make it easier to see what happened in the frame. Points on the path could be clicked to seek there, which should offer faster and less clunky navigation than stepping buttons.

Hide Unsupported Developer Tool Features (not yet implemented)

Support for the normal features of the developer tools is pretty limited in recording/replaying tabs. While the supported features will grow over time, the UI needs to be improved so that features which aren't supported are not shown or are shown in a disabled state.

Currently, only the Debugger, Console, and Inspector developer tools will work correctly in a recording/replaying tab, and some features of these panels will not work, or will not work in the same way as when a normal tab is being debugged.

One important issue is that any side effects from evaluating expressions via the Console or the Debugger's watch expressions will not carry over when the tab resumes executing. This restriction is in place to ensure that JS executes the same way when replaying as it did while recording.

Dynamic Analysis Features

An important but as-yet unexploited advantage of being able to exactly replay a Web Replay recording is that the recording can be analyzed without overhead affecting the user's experience. This section describes some analyses that could be performed and be helpful for developers who are either debugging a problem, or trying to understand or improve a complex code base.

Comparing Executions (not yet implemented)

Comparing the behavior of a recording that exhibits a bug with a second recording that doesn't exhibit the bug should help with quickly locating the source of the problem. Doing this well will require some experimentation, but in many cases the buggy recording should hit different locations in the source or exhibit different types from the normal recording. Using a corpus of several normal recordings (or buggy recordings) would reduce false positives due to incidental differences between the recordings.

Aggregate Call Graph and Data Flow (not yet implemented)

When developing a complex web app it is often hard to find where a function is called, the callees at a call site, where some data in an object came from or where it is used, or what type a value has. These questions can be answered by analyzing one or more recordings to study their behavior in detail. If the debugger could perform this analysis then it could show this information to developers and help them understand the app even when they are not actively debugging a particular recording.

Static Type Integration (not yet implemented)

Static type systems like Flow and TypeScript are great and really useful for managing an app's codebase, but they are unsound by design, and it is pretty easy to satisfy the type system and yet have different types in practice. A recording can be analyzed for the types that appear in practice. These can be compared with the types provided to the type system, and any mismatches can be flagged. The points in the recording where the mismatches occur can be identified, and the debugger can seek to those points to allow further investigation of the causes of the mismatch.

An alternate use of the types that appear in practice would be to provide seed information for automatically populating the types in an app that is being converted to use Flow or TypeScript.

Type Profiling (not yet implemented)

The types that appear in practice have a large effect on how well the associated code can be optimized by JITs. While different JITs optimize code in different ways, for peak performance they all require code to operate on values of consistent types: primitive types, including int32 vs. doubles, or objects that have the same set of properties. If JS performance is a bottleneck, recordings can be analyzed for code regions that are both very hot and have inconsistent types. These are good candidates for optimization, and as with static type integration above, points where unexpected types appear can be seeked to in the debugger for investigation.

Memory Analysis (not yet implemented)

Analyzing memory usage and leaks in JS can be difficult because there is no (or limited) information about where objects were allocated or how the object graph was constructed. Recordings can be manually analyzed to determine this information, but it would be nice to automate this process and provide a summary of the allocation sites and places where objects are linked together that end up entraining the most amount of memory later on.

Platform Improvements

This section describes improvements to Web Replay's underlying platform which could make it more broadly useful for developers.

Support more Web Features (not yet implemented)

Several web features are not supported when recording/replaying. While tabs with these features won't (or shouldn't!) crash, the features are disabled and the tab will not be fully usable. Some of these will be easier to support than others.

Support more Operating Systems (not yet implemented)

Only macOS is supported right now. Web Replay's architecture should allow it to work on any operating system: the OS features needed are not specific to macOS or to POSIX systems. Still, porting it to other POSIX systems (Linux, Android) will be easier than Windows, due to the overlap with macOS. There is, however, a partial Windows port from an older version of the architecture that can replay a simple page but not rewind, which should make writing a complete Windows port easier.

Cloud Integration (partially implemented)

Storing recordings in the cloud and interacting with them via the debugger could streamline several features described above:

  • Difficulties when recording and replaying on different machines with incompatible firefox builds or operating systems will be smoothed out. Recordings can be uploaded, and cloud services can locate the correct build and OS needed to replay them.
  • Management of a corpus of recordings (some which may have been made with different builds or operating systems) will be easier to manage, with shared storage in the cloud.
  • Expensive dynamic analyses are easier to run in the cloud, allowing a high level of parallelism without impacting users.

The cloud should not be the only option by which people can use Web Replay, however. All features should be accessible to users operating locally.

While cloud integration is not in placer, Web Replay's architecture has recently been redesigned in preparation for cloud support, and communicating with replaying processes over a network connection instead of IPC should work pretty efficiently.

Recording Firefox UI (partially implemented)

Right now only content tabs can be recorded and replayed. Firefox's UI and privileged code is largely written in JS, and it would be nice to be able to use Web Replay to help debug and develop Firefox itself, for better dogfooding and gathering internal feedback. This is partially underway and is tracked in bug 1521566.