blob: 2a922d4fb322cfcb80c467512f3c13f71f76895c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
---
title: performance.memory
slug: Web/API/Performance/memory
tags:
- API
- Reference
- Performance web
translation_of: Web/API/Performance/memory
---
{{APIRef}}
{{Non-standardGeneric('header')}}
## Syntaxe
```js
timingInfo = performance.memory
```
## Attributs
- `jsHeapSizeLimit`
- : La taille maximale du tas, en octets, qui est disponible pour le contexte.
- `totalJSHeapSize`
- : La taille totale du répertoire alloué, en octets.
- usedJSHeapSize
- : Le segment actuellement actif du répertoire JS, en octets.
## Spécifications
Aucune
## Compatibilité des navigateurs
{{Compat("api.Performance.memory")}}
## Voir aussi
- L'interface {{domxref("Performance")}} à laquelle il appartient.
|