summaryrefslogtreecommitdiffstats
path: root/devtools/shared
Commit message (Collapse)AuthorAgeLines
* Issue #1280 - Stop requesting HPKP state from within devtools.wolfbeast2020-03-30-1/+2
|
* Follow-up to 4e2e9be6a - Move HeapSnapshot DevTools-only Modules back to ↵Matt A. Tobin2020-02-23-0/+2355
| | | | | | | | DevTools I am so done with this. Resolves #316
* Reclassify heapsnapshot and nsJSInspector as not part of devtoolsMatt A. Tobin2020-02-22-18073/+0
| | | | This resolves Issue #316
* Issue #1356 - Remove -moz-user-input disabled to improve event handling.athenian2002020-01-16-2/+0
|
* Issue #1289 - Part 3: Update tests.wolfbeast2019-11-14-5/+6
|
* Issue #1230 - Part 2: Align devtools to the changes in css-gridGaming4JC2019-09-28-2/+4
| | | | | Ref: 1398537 part 4 - [css-multicol] Implement percentages for 'column-gap' (automated update of devtools).
* 104442 - Part 2: Add a testcase for devtools and note.Gaming4JC2019-07-18-0/+18
|
* Issue #1053 - Drop support Android and remove Fennec - Part 1b: Remove ↵Matt A. Tobin2019-04-23-7/+2
| | | | MOZ_FENNEC
* Handle URL token in a closer way to the CSS3 specJustOff2019-04-20-2/+22
|
* Issue #991 Part 3: DevtoolsAscrod2019-04-13-13/+2
|
* Remove NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTSwolfbeast2019-01-18-1/+0
|
* Telemetry: Remove stubs and related codeadeshkp2019-01-12-37/+3
|
* Clean up a number of unused variables.wolfbeast2018-09-29-2/+0
| | | | Tag #21.
* Merge pull request #791 from g4jc/session_supercookieMoonchild2018-09-27-10/+10
|\ | | | | Issue #792 - backport mozbug 1334776 - CVE-2017-7797 Header name interning leaks across origins
| * backport mozbug 1334776 - CVE-2017-7797 Header name interning leaks across ↵Gaming4JC2018-09-25-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | origins Potential attack: session supercookie. [Moz Notes](https://bugzilla.mozilla.org/show_bug.cgi?id=1334776#c5): "The problem is that for unknown header names we store the first one we see and then later we case-insensitively match against that name *globally*. That means you can track if a user agent has already seen a certain header name used (by using a different casing and observing whether it gets normalized). This would allow you to see if a user has used a sensitive service that uses custom header names, or allows you to track a user across sites, by teaching the browser about a certain header case once and then observing if different casings get normalized to that. What we should do instead is only store the casing for a header name for each header list and not globally. That way it only leaks where it's expected (and necessary) to leak." [Moz fix note](https://bugzilla.mozilla.org/show_bug.cgi?id=1334776#c8): "nsHttpAtom now holds the old nsHttpAtom and a string that is case sensitive (only for not standard headers). So nsHttpAtom holds a pointer to a header name. (header names are store on a static structure). This is how it used to be. I left that part the same but added a nsCString which holds a string that was used to resoled the header name. So when we parse headers we call ResolveHeader with a char*. If it is a new header name the char* will be stored in a HttpHeapAtom, nsHttpAtom::_val will point to HttpHeapAtom::value and the same strings will be stored in mLocalCaseSensitiveHeader. For the first resolve request they will be the same but for the following maybe not. At the end this nsHttpAtom will be stored in nsHttpHeaderArray. For all operation we will used the old char* except when we are returning it to a script using VisitHeaders."
* | Build nsJSInspector regardless of devtoolsMatt A. Tobin2018-09-26-0/+279
|/
* Remove all C++ Telemetry Accumulation calls.wolfbeast2018-09-03-12/+0
| | | | | This creates a number of stubs and leaves some surrounding code that may be irrelevant (eg. recorded time stamps, status variables). Stub resolution/removal should be a follow-up to this.
* Remove support for TLS session caches in TLSServerSocket.wolfbeast2018-09-01-1/+0
| | | | This resolves #738
* Remove other gonk widget conditionals and unused files.wolfbeast2018-05-13-12/+1
| | | | Tag #288.
* Issue #316 - Always build heapsnapshot regardless of the rest of the ↵Matt A. Tobin2018-05-01-9/+10
| | | | devtools for now
* moebius#90: CSS - implement text-justify propertyjanekptacijarabaci2018-04-01-0/+21
|
* Bug 755821: Function() should use the parser's argument parsing codejanekptacijarabaci2018-03-16-10/+0
|
* Fix build system translation errors.wolfbeast2018-03-04-1/+1
| | | | Follow-up to 11a8a39f6d2e057d51559c52c1bf0ba74bbfe189
* moebius#339: Make it possible to add cookies, local and session storage entriesjanekptacijarabaci2018-03-02-0/+15
| | | | | Issue #31 https://github.com/MoonchildProductions/moebius/pull/339
* moebius#337: Added option to remove all session cookies for a specific domainjanekptacijarabaci2018-03-02-0/+8
| | | | | Issue #31 https://github.com/MoonchildProductions/moebius/pull/337
* Bug 1320362: Move indexedDb storage type in the storage inspector into a new ↵janekptacijarabaci2018-03-02-0/+3
| | | | | | column Issue #31
* Bug 1276339: Storage inspector doesn't work on chrome:// pages and web ↵janekptacijarabaci2018-03-02-1/+1
| | | | | | extensions Issue #31
* Merge pull request #34 from janekptacijarabaci/devtools_import-from-moebius_1Moonchild2018-03-02-22/+125
|\ | | | | Port across devtools enhancements
| * Fix nitjanekptacijarabaci2018-03-01-1/+1
| |
| * Fix "help cmd" and "cmd refresh" in the Developer Toolbarjanekptacijarabaci2018-03-01-8/+9
| | | | | | | | https://github.com/MoonchildProductions/moebius/pull/348
| * DevTools - gcli - screenshot - the vertical modejanekptacijarabaci2018-03-01-0/+6
| | | | | | | | https://github.com/MoonchildProductions/moebius/pull/166
| * DevTools - style editor - StyleSheetsActor should use the parent tabActor to ↵janekptacijarabaci2018-03-01-0/+8
| | | | | | | | | | | | retrieve the list of windows and react to new/removed windows https://github.com/MoonchildProductions/moebius/pull/124
| * DevTools - network - implement the secureConnectionStart property for the ↵janekptacijarabaci2018-03-01-1/+34
| | | | | | | | | | | | | | PerformanceTiming https://github.com/MoonchildProductions/moebius/pull/116 ("/testing" and "/toolkit" in in the previous commit)
| * DevTools - network - security (improvements)janekptacijarabaci2018-03-01-0/+27
| | | | | | | | | | | | https://github.com/MoonchildProductions/moebius/pull/113 https://github.com/MoonchildProductions/moebius/pull/118 https://github.com/MoonchildProductions/moebius/pull/127
| * DevTools - inspector - data URL source links and their tooltips are unreadablejanekptacijarabaci2018-02-28-2/+10
| | | | | | | | https://github.com/MoonchildProductions/moebius/pull/95
| * [partial fix] DevTools - network - proxy - throws an errors (remoteAddress)janekptacijarabaci2018-02-28-2/+18
| | | | | | | | https://github.com/MoonchildProductions/moebius/pull/63
| * DevTools - gcli commands - cookiejanekptacijarabaci2018-02-28-9/+13
| | | | | | | | https://github.com/MoonchildProductions/moebius/pull/55
* | Use MOZ_FENNEC and MOZ_XULRUNNER instead of checking MOZ_BUILD_APP in most ↵Matt A. Tobin2018-03-01-1/+1
|/ | | | places
* Merge pull request #7 from janekptacijarabaci/devtools_inspector_cssColor4_1Moonchild2018-02-04-11/+55
|\ | | | | Support for css-color-4 (finish)
| * Support for css-color-4 (finish)janekptacijarabaci2018-02-02-11/+55
| | | | | | | | Issue #4
* | Merge pull request #6 from ↵Moonchild2018-02-04-1/+129
|\ \ | | | | | | | | | | | | janekptacijarabaci/devtools_inspector_copyFullCSSPath_1 Add a "copy full CSS path" option to the inspector's menu
| * | Add a "copy full CSS path" option to the inspector's menujanekptacijarabaci2018-02-02-1/+129
| |/ | | | | | | Issue #3
* | Devtools gcli commands - fix the help.wolfbeast2018-02-04-4/+4
| |
* | Remove browser tests - Part 1: The Tests (except for experiments)Matt A. Tobin2018-02-03-2/+0
|/
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+138967