Files
ozcoder 7679883d8a Bug 2020186 - [har] Add support for _priority / _initialPriority custom fields. r=jdescottes,devtools-reviewers,necko-reviewers
Added a tooltip to the Priority column to show final priority.
Added getRequestPriorityAsNumber function to convert HAR priority string back into a value.
Update representation of the priority value of a resource when it changes.
Added field priority to HAR file export and importing.
Linting wants double quotes.
priority **needs** to be gathered first before assigning into resource.
Check if the priority has changed to decide if Priority should re-render.
Added test to check priority of images above and below the fold.
Changed test HTML file into a hand written example with some explanation.
Guard against null priority when updating it.
Use isInteger to check priority is really a number.
We do not want to overwrite priority with "undefined".
Defer setting up the first test image a little bit, but do not check its priority.
Test HTML needs to be large.

Differential Revision: https://phabricator.services.mozilla.com/D287020
2026-06-12 10:08:50 +00:00
..

Network Observer modules

The NetworkObserver module and associated helpers allow to:

  • monitor network events (requests and responses)
  • block requests
  • throttle responses

The DevTools network-observer modules are used both by DevTools and by WebDriver BiDi, found under /remote. Breaking changes should be discussed and reviewed both by devtools and webdriver peers.