diff options
Diffstat (limited to 'files/fr/web/api/performance/memory/index.html')
-rw-r--r-- | files/fr/web/api/performance/memory/index.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/files/fr/web/api/performance/memory/index.html b/files/fr/web/api/performance/memory/index.html new file mode 100644 index 0000000000..a98b747b49 --- /dev/null +++ b/files/fr/web/api/performance/memory/index.html @@ -0,0 +1,43 @@ +--- +title: performance.memory +slug: Web/API/Performance/memory +tags: + - API + - Reference + - Performance web +translation_of: Web/API/Performance/memory +--- +<p>{{APIRef}}</p> + +{{Non-standardGeneric('header')}} + +<h2 id="Syntax">Syntaxe</h2> + +<pre class="brush: js"> + <em>timingInfo</em> = <em>performance</em>.memory +</pre> + +<h2 id="Attributes">Attributs</h2> + +<dl> + <dt><code>jsHeapSizeLimit</code></dt> + <dd>La taille maximale du tas, en octets, qui est disponible pour le contexte.</dd> + <dt><code>totalJSHeapSize</code></dt> + <dd>La taille totale du répertoire alloué, en octets.</dd> + <dt>usedJSHeapSize</dt> + <dd>Le segment actuellement actif du répertoire JS, en octets.</dd> +</dl> + +<h2 id="Specifications">Spécifications</h2> + +<p>Aucune</p> + +<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.Performance.memory")}}</p> + +<h2 id="See_also">Voir aussi</h2> + +<ul> + <li>L'interface {{domxref("Performance")}} à laquelle il appartient.</li> +</ul> |