aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/idbtransaction/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/idbtransaction/index.html')
-rw-r--r--files/fr/web/api/idbtransaction/index.html118
1 files changed, 1 insertions, 117 deletions
diff --git a/files/fr/web/api/idbtransaction/index.html b/files/fr/web/api/idbtransaction/index.html
index a48077f753..f87fc8eb1a 100644
--- a/files/fr/web/api/idbtransaction/index.html
+++ b/files/fr/web/api/idbtransaction/index.html
@@ -173,123 +173,7 @@ function addData() {
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-<div>{{CompatibilityTable}}</div>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Fonctionnalité</th>
- <th>Chrome</th>
- <th>Edge</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari (WebKit)</th>
- </tr>
- <tr>
- <td>Support simple</td>
- <td>{{CompatChrome(23)}}{{property_prefix("webkit")}}<br>
- {{CompatChrome(24)}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>10 {{property_prefix("moz")}}<br>
- {{CompatGeckoDesktop("16.0")}}</td>
- <td>10, partial</td>
- <td>15</td>
- <td>7.1</td>
- </tr>
- <tr>
- <td>Disponible dans les <em>web workers</em></td>
- <td>{{CompatVersionUnknown}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatGeckoMobile("37.0")}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatOpera(35)}}</td>
- <td>{{CompatUnknown}}</td>
- </tr>
- <tr>
- <td><code>objectStoreNames</code></td>
- <td>{{CompatChrome(48.0)}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatGeckoDesktop("50.0")}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatOpera(35)}}</td>
- <td>{{CompatNo}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Fonctionnalité</th>
- <th>Webview Android</th>
- <th>Chrome pour Android</th>
- <th>Edge</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>Firefox OS</th>
- <th>IE Phone</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- <th>Chrome pour Android</th>
- </tr>
- <tr>
- <td>Support simple</td>
- <td>{{CompatVersionUnknown}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatVersionUnknown}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatGeckoMobile("22.0")}}</td>
- <td>1.0.1</td>
- <td>10</td>
- <td>22</td>
- <td>8</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- <tr>
- <td>Disponible dans les <em>web workers</em></td>
- <td>{{CompatVersionUnknown}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatVersionUnknown}}<br>
- {{CompatChrome(38)}} (dépréciation des préfixes)<br>
- {{CompatChrome(57)}} (retrait des préfixes)</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatGeckoMobile("37.0")}}</td>
- <td>{{CompatVersionUnknown}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatOperaMobile(35)}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatVersionUnknown}}</td>
- </tr>
- <tr>
- <td><code>objectStoreNames</code></td>
- <td>{{CompatChrome(48.0)}}</td>
- <td>{{CompatChrome(48.0)}}</td>
- <td>{{CompatUnknown}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatOperaMobile(35)}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatChrome(48.0)}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<p>[1] Older versions of Chrome serialize all transactions. So even if you have only read-only transactions and no read-write transaction, your transactions are executed one at a time. Any subsequent transactions are not executed until all read-only transactions are completed. For the status, see <a href="https://crbug/64076">bug 64076</a>.</p>
-
-<p>Note that as of Firefox 40, IndexedDB transactions have relaxed durability guarantees to increase performance (see {{Bug("1112702")}}.) Previously in a <code>readwrite</code> transaction {{domxref("IDBTransaction.oncomplete")}} was fired only when all data was guaranteed to have been flushed to disk. In Firefox 40+ the <code>complete</code> event is fired after the OS has been told to write the data but potentially before that data has actually been flushed to disk. The <code>complete</code> event may thus be delivered quicker than before, however, there exists a small chance that the entire transaction will be lost if the OS crashes or there is a loss of system power before the data is flushed to disk. Since such catastrophic events are rare most consumers should not need to concern themselves further.</p>
+<p>{{Compat("api.IDBTransaction")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>