Ben Visness
4046d2e645
Bug 1926357: Rework wasm tag types and result types. r=rhunt
...
The intersection of tag types and rec groups causes a subtle situation
where two structurally-identical tag types should not match because
the tag types are not *the same*. This patch changes tag types to store
TypeDef* instead of a vector of val types. This disallows some module
linking that was allowed before, but only in cases where the types were
equal anyway and therefore no incorrect behavior would occur.
This patch also fixes one other situation where ResultTypes were being
compared for equality, instead of subtyping being used. This fixes a
subtle validation issue with if statements lacking an else.
Differential Revision: https://phabricator.services.mozilla.com/D227574
2024-11-11 15:38:45 +00:00
Ben Visness
706a47f6ed
Bug 1926357: Rework wasmFailValidateText and assertErrorMessage for clarity. r=rhunt
...
The message for wasmFailValidateText made it sound like the compile had
not failed, when in fact it just did not fail "as expected", i.e. in the
expected way. That message is now clearer.
The message printing for assertErrorMessage mixed up the order in a
confusing way that made it seem like the top-level user message was
actually the most proximal cause of the exception. This was weird and
has been reordered. The code has also been reworked for clarity, making
it obvious that no exception can slip through, and handling the common
mistake of forgetting to provide an error message. (It is at least a
common mistake for me.)
Differential Revision: https://phabricator.services.mozilla.com/D227682
2024-11-11 15:38:44 +00:00
Ben Visness
41ca5a38b6
Bug 1926357: Update wasm spec tests to wasm-3.0. r=rhunt,supply-chain-reviewers
...
Many proposals have been merged into the wasm-3.0 branch of the
WebAssembly spec repo. It currently represents the state of the art of
wasm, which we keep up with - proposals that are officially standardized
but not yet super widely implemented.
Basing our spec tests on this reduces duplication across proposal repos
and should help us catch spec problems earlier.
This patch reworks the spec test generator slightly to handle some new
module definition syntax, and removes proposals which have already been
merged into wasm-3.0.
Differential Revision: https://phabricator.services.mozilla.com/D227573
2024-11-11 15:38:43 +00:00
Jonathan Kew
3aa3ba17b5
Bug 1926732 - Relax assertion in FindLineClampTarget because line-clamp may already have been evaluated by a descendant block. r=layout-reviewers,emilio
...
Differential Revision: https://phabricator.services.mozilla.com/D228579
2024-11-11 14:37:59 +00:00
Jonathan Kew
e6d0f8c014
Bug 1926732 - Return a pair of <frame, line> from FindLineClampTarget, to make its API clearer. r=layout-reviewers,emilio
...
No change in behavior.
Differential Revision: https://phabricator.services.mozilla.com/D228578
2024-11-11 14:37:58 +00:00
Jonathan Kew
42987a1884
Bug 1926732 - Add crashtest. r=layout-reviewers,emilio
...
Differential Revision: https://phabricator.services.mozilla.com/D228577
2024-11-11 14:37:58 +00:00
kycn
e2213aa90c
Bug 1907288 - Enable process priority manager grace periods on all channels on Android. r=geckoview-reviewers,calu
...
The grace periods were enabled on Fenix Nightly long time ago. This patch enables them on all channels.
Differential Revision: https://phabricator.services.mozilla.com/D228333
2024-11-11 14:18:04 +00:00
ffxbld
d3970aeacb
No Bug, mozilla-central repo-update HSTS HPKP remote-settings tld-suffixes mobile-experiments ct-logs - r=release-managers,dmeehan
...
Differential Revision: https://phabricator.services.mozilla.com/D228572
2024-11-11 14:06:19 +00:00
rahulsainani
56773b91f9
Bug 1929567 - Show privacy badge on tabcounter in private mode r=android-reviewers,007
...
Differential Revision: https://phabricator.services.mozilla.com/D228420
2024-11-11 13:08:25 +00:00
Chris H-C
d05d8d125d
Bug 1786077 - Document how to update application-services when updating Glean's major version number r=TravisLong,janerik
...
Differential Revision: https://phabricator.services.mozilla.com/D228094
2024-11-11 13:07:48 +00:00
Jan-Erik Rediger
c882ef6160
Bug 1928630 - Vendor Glean SDK v62.0.0 r=janerik,supply-chain-reviewers,mach-reviewers,android-reviewers,ahal,boek
...
Differential Revision: https://phabricator.services.mozilla.com/D228093
2024-11-11 13:07:47 +00:00
Jan-Erik Rediger
73bed99af9
Bug 1928630 - Update glean_parser to v15.2.1 r=janerik,mach-reviewers,ahal
...
Differential Revision: https://phabricator.services.mozilla.com/D228092
2024-11-11 13:07:47 +00:00
Updatebot
0dfacefc45
Bug 1930298 - Update android nightly application-services version bump to 775da2115b1f532b332fdedbae4c7e4a21488633 r=release-managers,RyanVM
...
Differential Revision: https://phabricator.services.mozilla.com/D228532
2024-11-11 13:07:46 +00:00
Jan de Mooij
f0c347809d
Bug 1930117 - Report OOM in ShapeListObject::create if registerObjectWithWeakPointers fails. r=jonco
...
Differential Revision: https://phabricator.services.mozilla.com/D228565
2024-11-11 12:15:47 +00:00
t-p-white
0bb330d5d0
Bug 1928949 - Ensure Firefox shortcuts are not removed during the icon update. r=android-reviewers,gmalekpour,amejiamarmol
...
Differential Revision: https://phabricator.services.mozilla.com/D228309
2024-11-11 11:53:40 +00:00
Emilio Cobos Álvarez
1c3509dcfd
Bug 1930284 - Also clean-up toolbar color variables. r=desktop-theme-reviewers,dao
...
Unlike the previous patch this does change behavior, but I think it's
fine.
The reason we used the non-lwt toolbar colors for customize mode is to
guarantee full opacity, see bug 1762379 and bug 1765685.
However, we need to do the same on the sidebar, and there we chose a
more theme-friendly way of doing that, which allows this simplification.
So do that instead.
Differential Revision: https://phabricator.services.mozilla.com/D228523
2024-11-11 11:10:42 +00:00
Julian Seward
eb7c0a4e97
Bug 1929493 - Minor cleanups to the wasm inlining budget logic. r=rhunt.
...
Bug 1927061 introduced inlining budgets for functions and for entire modules.
That has unfortunately a couple of rough edges that this patch fixes.
* The situation where a per-function or per-module budget is exactly zero is
ambiguous. As a result the logging machinery (MOZ_LOG=wasmPerf:3) can print
the "Inlining budget for fI=... exceeded" message a different number of
times from the number shown in the final "... functions overran inlining
budget" message.
It also causes the "Inlining budget for fI=... exceeded" message to be
printed for all functions when we have --wasm-compiler=ion.
This patch removes the ambiguity and fixes the above by having a value of
zero mean "budget not exceeded"; hence it is the zero-to-negative transition
that is important.
* two JS_LOGs were not protected by #ifdef JS_JITSPEW as they should have
been.
Differential Revision: https://phabricator.services.mozilla.com/D228197
2024-11-11 11:10:12 +00:00
Emilio Cobos Álvarez
7779560e29
Bug 1930284 - Clean up toolbox color variables. r=desktop-theme-reviewers,dao
...
While writing bug 1928151, I realized we really don't need the separate
non-lwt versions of this. We only use them to set the general variables,
so they can just go away.
Differential Revision: https://phabricator.services.mozilla.com/D228521
2024-11-11 10:47:23 +00:00
Stephen Thompson
fbc6382c6c
Bug 1929384 - do not close window if there are still collapsed tab groups r=dao,tabbrowser-reviewers
...
When closing the last visible tab, if there are any collapsed tab groups, make one of the tabs in a tab group active. Based on pre-existing behavior, activating a tab in a collapsed tab group causes the tab group to expand.
Currently, if you close the last visible tab while you still have collapsed tab groups present on the tab bar, the browser window will close. This is surprising and sad behavior for users.
Differential Revision: https://phabricator.services.mozilla.com/D228274
2024-11-11 10:39:11 +00:00
Dão Gottwald
0ba8092499
Bug 1925258 - Remove comment pretending we could soon have a transition between connecting and loading throbber states. r=emilio,desktop-theme-reviewers,tabbrowser-reviewers,dwalker,mconley
...
Due to performance regressions, we've backed out the attempt to enable this.
Differential Revision: https://phabricator.services.mozilla.com/D225960
2024-11-11 10:37:23 +00:00
rahulsainani
1c50cd8dda
Bug 1930104 - Add abstract ComposeFragment r=android-reviewers,007
...
Differential Revision: https://phabricator.services.mozilla.com/D228419
2024-11-11 10:28:33 +00:00
rahulsainani
c99108c911
Bug 1929611 - Update tabstrip item min width and close button logic r=android-reviewers,007
...
Differential Revision: https://phabricator.services.mozilla.com/D228199
2024-11-11 09:57:51 +00:00
iorgamgabriel
73af5482be
Bug 1929334 - [Menu Redesign] [Webcompat Reporter] Hide "Report Broken Site" menu item and preview text in the new menu in Release. r=android-reviewers,calu
...
Differential Revision: https://phabricator.services.mozilla.com/D228177
2024-11-11 09:42:43 +00:00
andrei popa
8f92d6d85b
Bug 1851037 - changed fun to operator fun and refactored all callers to avoid explicitly call invoke r=android-reviewers,avirvara
...
Differential Revision: https://phabricator.services.mozilla.com/D228161
2024-11-11 09:26:43 +00:00
Moritz Beier
7de02600af
Bug 1655066 - Search Engine icons should be indexed by width only. r=Standard8
...
Differential Revision: https://phabricator.services.mozilla.com/D226921
2024-11-11 09:09:18 +00:00
André Bargull
b73b36214d
Bug 1928407: Store segmenter string chars in a tagged pointer. r=sfink
...
Differential Revision: https://phabricator.services.mozilla.com/D228164
2024-11-11 08:29:06 +00:00
AndiAJ
07ad6a19e1
Bug 1930123 - Add missing steps to homeMainMenuItemsTest UI test r=aaronmt
...
Based on the toDoAutomation notes added by my fellow colleagues in testRail, I've added some missing steps that verify the main menu "Passwords" option
The UI test successfully passed 50x on Firebase ✅
Differential Revision: https://phabricator.services.mozilla.com/D228438
2024-11-11 07:16:06 +00:00
Mozilla Releng Treescript
bde8adc1f8
no bug - Bumping Mobile l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
...
ach -> bdaa3a76e69b1f17db71c35582b4012755f4e720
an -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ar -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ast -> bdaa3a76e69b1f17db71c35582b4012755f4e720
az -> bdaa3a76e69b1f17db71c35582b4012755f4e720
be -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bg -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
br -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ca -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cak -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cy -> bdaa3a76e69b1f17db71c35582b4012755f4e720
da -> bdaa3a76e69b1f17db71c35582b4012755f4e720
de -> bdaa3a76e69b1f17db71c35582b4012755f4e720
dsb -> bdaa3a76e69b1f17db71c35582b4012755f4e720
el -> bdaa3a76e69b1f17db71c35582b4012755f4e720
en-CA -> bdaa3a76e69b1f17db71c35582b4012755f4e720
en-GB -> bdaa3a76e69b1f17db71c35582b4012755f4e720
eo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-AR -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-CL -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-ES -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-MX -> bdaa3a76e69b1f17db71c35582b4012755f4e720
et -> bdaa3a76e69b1f17db71c35582b4012755f4e720
eu -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fa -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ff -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fi -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fy-NL -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ga-IE -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gd -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gu-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
he -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hi-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hsb -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hu -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hy-AM -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ia -> bdaa3a76e69b1f17db71c35582b4012755f4e720
id -> bdaa3a76e69b1f17db71c35582b4012755f4e720
is -> bdaa3a76e69b1f17db71c35582b4012755f4e720
it -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ja -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ka -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kab -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
km -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ko -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lij -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lt -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ltg -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lv -> bdaa3a76e69b1f17db71c35582b4012755f4e720
meh -> bdaa3a76e69b1f17db71c35582b4012755f4e720
mix -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ml -> bdaa3a76e69b1f17db71c35582b4012755f4e720
mr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ms -> bdaa3a76e69b1f17db71c35582b4012755f4e720
my -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nb-NO -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ne-NP -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nn-NO -> bdaa3a76e69b1f17db71c35582b4012755f4e720
oc -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pa-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pt-BR -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pt-PT -> bdaa3a76e69b1f17db71c35582b4012755f4e720
rm -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ro -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ru -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
son -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sq -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sv-SE -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ta -> bdaa3a76e69b1f17db71c35582b4012755f4e720
te -> bdaa3a76e69b1f17db71c35582b4012755f4e720
th -> bdaa3a76e69b1f17db71c35582b4012755f4e720
tl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
tr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
trs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
uk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ur -> bdaa3a76e69b1f17db71c35582b4012755f4e720
uz -> bdaa3a76e69b1f17db71c35582b4012755f4e720
vi -> bdaa3a76e69b1f17db71c35582b4012755f4e720
wo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
xh -> bdaa3a76e69b1f17db71c35582b4012755f4e720
zam -> bdaa3a76e69b1f17db71c35582b4012755f4e720
zh-CN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
zh-TW -> bdaa3a76e69b1f17db71c35582b4012755f4e720
2024-11-11 07:05:48 +00:00
Mozilla Releng Treescript
12584c8736
no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
...
ach -> bdaa3a76e69b1f17db71c35582b4012755f4e720
af -> bdaa3a76e69b1f17db71c35582b4012755f4e720
an -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ar -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ast -> bdaa3a76e69b1f17db71c35582b4012755f4e720
az -> bdaa3a76e69b1f17db71c35582b4012755f4e720
be -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bg -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
br -> bdaa3a76e69b1f17db71c35582b4012755f4e720
brx -> bdaa3a76e69b1f17db71c35582b4012755f4e720
bs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ca -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ca-valencia -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cak -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ckb -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
cy -> bdaa3a76e69b1f17db71c35582b4012755f4e720
da -> bdaa3a76e69b1f17db71c35582b4012755f4e720
de -> bdaa3a76e69b1f17db71c35582b4012755f4e720
dsb -> bdaa3a76e69b1f17db71c35582b4012755f4e720
el -> bdaa3a76e69b1f17db71c35582b4012755f4e720
en-CA -> bdaa3a76e69b1f17db71c35582b4012755f4e720
en-GB -> bdaa3a76e69b1f17db71c35582b4012755f4e720
eo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-AR -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-CL -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-ES -> bdaa3a76e69b1f17db71c35582b4012755f4e720
es-MX -> bdaa3a76e69b1f17db71c35582b4012755f4e720
et -> bdaa3a76e69b1f17db71c35582b4012755f4e720
eu -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fa -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ff -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fi -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fur -> bdaa3a76e69b1f17db71c35582b4012755f4e720
fy-NL -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ga-IE -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gd -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
gu-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
he -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hi-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hsb -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hu -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hy-AM -> bdaa3a76e69b1f17db71c35582b4012755f4e720
hye -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ia -> bdaa3a76e69b1f17db71c35582b4012755f4e720
id -> bdaa3a76e69b1f17db71c35582b4012755f4e720
is -> bdaa3a76e69b1f17db71c35582b4012755f4e720
it -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ja -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ja-JP-mac -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ka -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kab -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
km -> bdaa3a76e69b1f17db71c35582b4012755f4e720
kn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ko -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lij -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lt -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ltg -> bdaa3a76e69b1f17db71c35582b4012755f4e720
lv -> bdaa3a76e69b1f17db71c35582b4012755f4e720
meh -> bdaa3a76e69b1f17db71c35582b4012755f4e720
mk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
mr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ms -> bdaa3a76e69b1f17db71c35582b4012755f4e720
my -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nb-NO -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ne-NP -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
nn-NO -> bdaa3a76e69b1f17db71c35582b4012755f4e720
oc -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pa-IN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pt-BR -> bdaa3a76e69b1f17db71c35582b4012755f4e720
pt-PT -> bdaa3a76e69b1f17db71c35582b4012755f4e720
rm -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ro -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ru -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sat -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sc -> bdaa3a76e69b1f17db71c35582b4012755f4e720
scn -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sco -> bdaa3a76e69b1f17db71c35582b4012755f4e720
si -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
skr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
son -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sq -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
sv-SE -> bdaa3a76e69b1f17db71c35582b4012755f4e720
szl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ta -> bdaa3a76e69b1f17db71c35582b4012755f4e720
te -> bdaa3a76e69b1f17db71c35582b4012755f4e720
tg -> bdaa3a76e69b1f17db71c35582b4012755f4e720
th -> bdaa3a76e69b1f17db71c35582b4012755f4e720
tl -> bdaa3a76e69b1f17db71c35582b4012755f4e720
tr -> bdaa3a76e69b1f17db71c35582b4012755f4e720
trs -> bdaa3a76e69b1f17db71c35582b4012755f4e720
uk -> bdaa3a76e69b1f17db71c35582b4012755f4e720
ur -> bdaa3a76e69b1f17db71c35582b4012755f4e720
uz -> bdaa3a76e69b1f17db71c35582b4012755f4e720
vi -> bdaa3a76e69b1f17db71c35582b4012755f4e720
wo -> bdaa3a76e69b1f17db71c35582b4012755f4e720
xh -> bdaa3a76e69b1f17db71c35582b4012755f4e720
zh-CN -> bdaa3a76e69b1f17db71c35582b4012755f4e720
zh-TW -> bdaa3a76e69b1f17db71c35582b4012755f4e720
2024-11-11 07:05:42 +00:00
Daisuke Akatsuka
ed306a3360
Bug 1921731: Keep actions' layout until changing the results r=urlbar-reviewers,daleharvey,adw
...
Differential Revision: https://phabricator.services.mozilla.com/D226107
2024-11-11 05:44:29 +00:00
Daisuke Akatsuka
3f8a60fd49
Bug 1921731: Ensure to await for assertSearchMode r=urlbar-reviewers,adw
...
Differential Revision: https://phabricator.services.mozilla.com/D228557
2024-11-11 05:44:28 +00:00
Debadree Chatterjee
e88976e3ec
Bug 1929031 - Part 2: Add a shell option to disable explicit resource management. r=arai
...
Depends on D226991
Differential Revision: https://phabricator.services.mozilla.com/D227447
2024-11-11 05:03:41 +00:00
Debadree Chatterjee
3b2a0c452d
Bug 1929031 - Part 1: Add a static pref & shell option for explicit resource management proposal. r=arai
...
Depends on D226995
Differential Revision: https://phabricator.services.mozilla.com/D226991
2024-11-11 05:03:40 +00:00
Debadree Chatterjee
eda93848d9
Bug 1929049 - Remove explicit resource management build requirement from regexp test. r=arai
...
Depends on D227849
Differential Revision: https://phabricator.services.mozilla.com/D226995
2024-11-11 05:03:40 +00:00
Debadree Chatterjee
dc470abf07
Bug 1929055 - Update xray to handle explicit resource management globals. r=arai
...
Differential Revision: https://phabricator.services.mozilla.com/D227849
2024-11-11 05:03:40 +00:00
sotaro
e4ea628081
Bug 1929745 - Use gfx::FileHandleWrapper for DMABufSurface::mDmabufFds r=gfx-reviewers,lsalzman
...
It seems better to use gfx::FileHandleWrapper instead of int to hold the file descriptor like Bug 1928589.
Differential Revision: https://phabricator.services.mozilla.com/D228272
2024-11-11 04:56:39 +00:00
Drew Willcoxon
88419b0950
Bug 1930147 - Trim and lowercase the search string passed in to MLSuggest.makeSuggestions(). r=daisuke
...
I told Chidam we would trim and lowercase the search string passed in to
`MLSuggest.makeSuggestions()` but I forgot to do it. This fixes the bug. More
discussion here: https://mozilla-hub.atlassian.net/browse/QA-2738?focusedCommentId=962570
Differential Revision: https://phabricator.services.mozilla.com/D228524
2024-11-11 02:59:56 +00:00
Sandor Molnar
9a93e02b04
no bug - Fix lint failure. a=lint-fix DONTBUILD CLOSED TREE
2024-11-11 03:35:12 +02:00
Mozilla Releng Treescript
c94fd592ff
no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
2024-11-11 00:20:40 +00:00
Sandor Molnar
1ea14bb3b2
Merge mozilla-central to autoland. a=merge
2024-11-10 23:06:34 +02:00
moz-wptsync-bot
817cf9d059
Bug 1930361 - [wpt-sync] Update web-platform-tests to b6fb1078b99e2afb42f587d06712b1901e303a5f, a=testonly
...
MANUAL PUSH: wpt sync bot
wpt-head: b6fb1078b99e2afb42f587d06712b1901e303a5f
wpt-type: landing
2024-11-10 19:04:06 +00:00
moz-wptsync-bot
3423371e02
Bug 1930316 [wpt PR 49086] - Update wpt metadata, a=testonly
...
wpt-pr: 49086
wpt-type: metadata
2024-11-10 19:04:06 +00:00
Dominic Farolino
3d9cd32649
Bug 1930316 [wpt PR 49086] - DOM: Add moveBefore() live range update tests, a=testonly
...
Automatic update from web-platform-tests
DOM: Add moveBefore() live range update tests
See
8d24d3bff3
.
R=nrosenthal@chromium.org
Bug: 40150299
Change-Id: I105d9e14c7ec29656ce2e9934cf593428ca23be5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6003744
Commit-Queue: Dominic Farolino <dom@chromium.org>
Reviewed-by: Noam Rosenthal <nrosenthal@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1380889}
--
wpt-commits: b6fb1078b99e2afb42f587d06712b1901e303a5f
wpt-pr: 49086
2024-11-10 19:04:05 +00:00
Mozilla Releng Treescript
35c5505c85
no bug - Bumping Mobile l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
...
ach -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
an -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ar -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ast -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
az -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
be -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bg -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
br -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ca -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cak -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cy -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
da -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
de -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
dsb -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
el -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
en-CA -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
en-GB -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
eo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-AR -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-CL -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-ES -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-MX -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
et -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
eu -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fa -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ff -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fi -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fy-NL -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ga-IE -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gd -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gu-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
he -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hi-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hsb -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hu -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hy-AM -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ia -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
id -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
is -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
it -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ja -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ka -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kab -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
km -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ko -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lij -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lt -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ltg -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lv -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
meh -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
mix -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ml -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
mr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ms -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
my -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nb-NO -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ne-NP -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nn-NO -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
oc -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pa-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pt-BR -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pt-PT -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
rm -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ro -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ru -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
son -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sq -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sv-SE -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ta -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
te -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
th -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
tl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
tr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
trs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
uk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ur -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
uz -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
vi -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
wo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
xh -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
zam -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
zh-CN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
zh-TW -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
2024-11-10 18:59:56 +00:00
Mozilla Releng Treescript
16662107dc
no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
...
ach -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
af -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
an -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ar -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ast -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
az -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
be -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bg -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
br -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
brx -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
bs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ca -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ca-valencia -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cak -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ckb -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
cy -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
da -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
de -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
dsb -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
el -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
en-CA -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
en-GB -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
eo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-AR -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-CL -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-ES -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
es-MX -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
et -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
eu -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fa -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ff -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fi -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fur -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
fy-NL -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ga-IE -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gd -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
gu-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
he -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hi-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hsb -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hu -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hy-AM -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
hye -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ia -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
id -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
is -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
it -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ja -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ja-JP-mac -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ka -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kab -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
km -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
kn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ko -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lij -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lt -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ltg -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
lv -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
meh -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
mk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
mr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ms -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
my -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nb-NO -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ne-NP -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
nn-NO -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
oc -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pa-IN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pt-BR -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
pt-PT -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
rm -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ro -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ru -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sat -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sc -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
scn -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sco -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
si -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
skr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
son -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sq -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
sv-SE -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
szl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ta -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
te -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
tg -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
th -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
tl -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
tr -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
trs -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
uk -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
ur -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
uz -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
vi -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
wo -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
xh -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
zh-CN -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
zh-TW -> 14b4abcbeb27eac089d53a24e348af0302fc2b9e
2024-11-10 18:59:50 +00:00
Sandor Molnar
d38e58976d
Bug 1930352 - Fix android lint failure. a=lint-fix CLOSED TREE
2024-11-10 20:06:10 +02:00
Sandor Molnar
74d81f414c
Bug 1930352 - Fix android lint failure. a=lint-fix CLOSED TREE
2024-11-10 20:06:10 +02:00
Olli Pettay
07a2abbaab
Bug 1929640 - Add a mode to CCGCScheduler where it can collect faster in case lots of garbage is created and there isn't too much idle time to run the slices, r=mccr8,sfink
...
Differential Revision: https://phabricator.services.mozilla.com/D228215
2024-11-10 17:58:12 +00:00
Jonathan Kew
c931229d0e
Bug 1930367 - Fix typo in nsIFrame::ListGeneric logging. r=layout-reviewers,tnikkel
...
Differential Revision: https://phabricator.services.mozilla.com/D228549
2024-11-10 15:22:59 +00:00
Jan Varga
6297b1f998
Bug 1928092 - QM: Add temporary origin to cached origins even if directory metadata creation fails; r=dom-storage-reviewers,asuth
...
Differential Revision: https://phabricator.services.mozilla.com/D228082
2024-11-10 11:17:22 +00:00