Commit graph

2,248 commits

Author SHA1 Message Date
NTD
801b7a4d47 Adjust error number for WebExtensions on TychoAM and add the string to Basilisk
Pale Moon l10n will need an adjustment as well from -5 to -9
2019-02-15 23:36:33 +08:00
NTD
e088654914 Fix for loops in update.js (SyntaxError: missing ] after element list) 2019-02-15 23:36:32 +08:00
janekptacijarabaci
54566f2d9f JS - RegExp - match updated spec for /\b/iu and /\B/iu 2019-02-15 23:36:30 +08:00
wolfbeast
d76fed679b Generate irregexp character tables with make_unicode.py. 2019-02-15 23:36:29 +08:00
wolfbeast
b598dce28b Revert "JS - RegExp - match updated spec for /\b/iu and /\B/iu"
This reverts commit 93f8e06bb8d8656e868679d584c7c8771ff8e42f.
2019-02-15 23:36:27 +08:00
wolfbeast
5b4703015a Bustage fix: remove duplicate function def 2019-02-15 23:36:26 +08:00
janekptacijarabaci
5149d56104 JS - Object - "TypeError: setting a property that has only a getter" without mentioning file and property name 2019-02-15 23:36:24 +08:00
janekptacijarabaci
b9e802f497 HTML - implement the labels attribute (follow up) 2019-02-15 23:36:21 +08:00
janekptacijarabaci
5b24f05ce7 HTML - implement the labels attribute 2019-02-15 23:36:20 +08:00
janekptacijarabaci
91e5a3a71e JS - RegExp - match updated spec for /\b/iu and /\B/iu 2019-02-15 23:36:18 +08:00
wolfbeast
ea58ee34a6 Bump Goanna version for CSS improvements. 2019-02-15 23:36:17 +08:00
janekptacijarabaci
67a10f51a0 CSS: inline-block with a display:block <input> child element has a wrong baseline (HTML forms) 2019-02-15 23:36:15 +08:00
janekptacijarabaci
8d256442ca CSS - Grid - transferred min-size contribution of percentage size grid item with an intrinsic ratio 2019-02-15 23:36:14 +08:00
janekptacijarabaci
b9bbb5d201 CSS - Grid - intristic content with overflow:auto overlaps in grid 2019-02-15 23:36:12 +08:00
janekptacijarabaci
66276efa0a [draft] CSS - linear-gradient - zero (0) angle value without degree unit is not correctly interpreted 2019-02-15 23:36:11 +08:00
janekptacijarabaci
622832ae39 CSS - Grid - fit-content unexpectedly reserves space for full clamp size in repeat() 2019-02-15 23:36:09 +08:00
janekptacijarabaci
4ba6ca9106 SVG - support radialGradient fr attribute 2019-02-15 23:36:08 +08:00
janekptacijarabaci
3a4e49d048 Implement DOM page onvisibilitychange. 2019-02-15 23:36:06 +08:00
janekptacijarabaci
fc9d873b31 [minor fix] Places - deleting folder of livemarks - nsLivemarkService.js - 0x80070057 (NS_ERROR_ILLEGAL_VALUE) 2019-02-15 23:36:05 +08:00
janekptacijarabaci
6b5f1cedc6 [minor fix] Places - bookmarks - treeView.js - 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsINavHistoryContainerResultNode.getChildIndex] 2019-02-15 23:36:03 +08:00
janekptacijarabaci
17a44dcd1d Bookmarks - HTML export - Write CRLF on Windows systems and LF on others. 2019-02-15 23:36:02 +08:00
janekptacijarabaci
b8bbffacbe DOMContentLoaded and load does not work properly if "devtools.webconsole.persistlog == true" - is getting higher
Issue #52
2019-02-15 23:36:00 +08:00
trav90
ebf0f6c35a Fix some WebRTC tests to build with GCC 7.0. 2019-02-15 23:35:59 +08:00
trav90
d338ea9cea Fix a truncation leading to an error with GCC 7 2019-02-15 23:35:57 +08:00
trav90
e795fe8c1b Disable strict-aliasing for GCC in js/src/jsapi-tests
Compiling our tree with strict-aliasing is not supported.
2019-02-15 23:35:55 +08:00
trav90
c47b155157 Disable -Wimplicit-fallthrough in parser/html
GCC 7 supports the clang option -Wimplicit-fallthrough.
2019-02-15 23:35:53 +08:00
trav90
3d90bec874 Disable -Wimplicit-fallthrough for a chromium file
GCC 7 supports the clang option -Wimplicit-fallthrough.
2019-02-15 23:35:52 +08:00
trav90
c0174b24f7 Disable -Wimplicit-fallthrough in jsoncpp
GCC 7 supports the clang option -Wimplicit-fallthrough.
2019-02-15 23:35:50 +08:00
trav90
dc145a0b72 Disable -Wimplicit-fallthrough in dom/canvas
GCC 7 supports the clang option -Wimplicit-fallthrough.
2019-02-15 23:35:49 +08:00
trav90
4a350f434e Add MOZ_FALLTHROUGH macro definition for gcc 7 to suppress -Wimplicit-fallthrough warnings
The generic fallback MOZ_FALLTHROUGH definition is insufficient for GCC 7 and above, resulting in build warning spam and --enable-warnings-as-errors builds failing. The check for clang support is changed to use the __has_cpp_attribute macro, which is more robust than checking the __cplusplus version. Also, MOZ_FALLTHROUGH is now only defined in C++ code, since GCC errors out if it encounters a scoped attribute being used with __has_cpp_attribute in C code. No C code uses MOZ_FALLTHROUGH or derivatives at the moment.
2019-02-15 23:35:47 +08:00
trav90
cad73db0f2 Use |noexcept| instead of an exception-specification in mozalloc.h
We are using |throw(std::bad_alloc)|, but dynamic exception specifications have been deprecated in C++11. The C++11 equivalent is |noexcept(false)|. This causes build warning spam when using newer compilers such as GCC 7.x.
2019-02-15 23:35:46 +08:00
trav90
12bd9bbfe4 Disable -Wimplicit-fallthrough when building jsdtoa.cpp
GCC 7 supports the clang option -Wimplicit-fallthrough.
2019-02-15 23:35:44 +08:00
trav90
bea8786496 Disable strict-aliasing for GCC in js/src/gdb
Compiling our tree with strict-aliasing is not supported.
2019-02-15 23:35:43 +08:00
trav90
be0c996191 Disable strict-aliasing for GCC in js/src
Compiling our tree with strict-aliasing is not supported.
2019-02-15 23:35:41 +08:00
NTD
45c9880478 Port Pale Moon commit a3044d3 - Exclude default theme from update checks.
Do this both for TychoAM and WebExAM
2019-02-15 23:35:40 +08:00
adeshkp
427719ff27 Fix configure on Mac OS X 2019-02-15 23:35:38 +08:00
janekptacijarabaci
da48941d63 Added a button to refresh the Storage Inspector display
Issue #45
2019-02-15 23:35:37 +08:00
janekptacijarabaci
d0c4a6bdf1 Copy as cURL (PATCH)
Issue #44
2019-02-15 23:35:35 +08:00
janekptacijarabaci
2786ef0259 [minor fix] DevTools - inspector.properties (fix typo) 2019-02-15 23:35:34 +08:00
janekptacijarabaci
1c0e05bca2 moebius#346: Storage Inspector should trim port from hosts for cookies
Issue #31
https://github.com/MoonchildProductions/moebius/pull/346
2019-02-15 23:35:32 +08:00
janekptacijarabaci
b95939dd3c Bug 1302989: Make storage inspector work with file:// when # is in the URL
Issue #31
2019-02-15 23:35:31 +08:00
trav90
fab2253b26 Import lss code from esr52
Fixes build bustage on Linux (even with crashreporter disabled).
2019-02-15 23:35:29 +08:00
trav90
692e142bb5 Fix line endings on old-configure
Fixes Linux build bustage.
2019-02-15 23:35:27 +08:00
wolfbeast
b23857f77b Fix build system translation errors.
Follow-up to 11a8a39f6d2e057d51559c52c1bf0ba74bbfe189
2019-02-15 23:35:25 +08:00
janekptacijarabaci
1505b1290e The origin should not contain the ref part of the URL 2019-02-15 23:35:23 +08:00
wolfbeast
49ceae702e Remove testing-only UI components for e10s
This removes front-end tools only applicable for testing e10s (open non-e10s window, etc.)
This resolves #37
2019-02-15 23:35:22 +08:00
janekptacijarabaci
ed8a17ae7d moebius#93: DevTools: Network - DOMContentLoaded and load
Issue #31
Improvements: #34
https://github.com/MoonchildProductions/moebius/pull/93
2019-02-15 23:35:20 +08:00
janekptacijarabaci
558c645ef6 moebius#350: Don't display storage-sidebar after deleting all cookies
Issue #31
https://github.com/MoonchildProductions/moebius/pull/350
2019-02-15 23:35:19 +08:00
janekptacijarabaci
8a1405d8b9 moebius#342: Columns are not sorted correctly (Natural Sort algorithm)
Issue #31
https://github.com/MoonchildProductions/moebius/pull/342
2019-02-15 23:35:17 +08:00
janekptacijarabaci
6d865bfda3 moebius#339: Make it possible to add cookies, local and session storage entries
Issue #31
https://github.com/MoonchildProductions/moebius/pull/339
2019-02-15 23:35:16 +08:00