blob: 94199551c2cc45ffc519396c16f1a575e6ad486c (
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
|
---
title: fullscreenerror
slug: Web/API/Document/fullscreenerror_event
translation_of: Web/API/Document/fullscreenerror_event
---
L'évènement **`fullscreenerror`** est déclenché lorsque le navigateur ne peut pas entrer en mode plein écran.
## Informations générales
- Spécification
- : [Fullscreen](https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api)
- Interface
- : {{domxref("Event")}}
- Propagation
- : Oui
- Annulable
- : Non
- Cible
- : {{domxref("Document")}}
- Action par défaut
- : Aucune
## Propriétés
| Property | Type | Description |
| ------------------------------------- | ------------------------------------ | ------------------------------------------------------ |
| `target` {{readonlyInline}} | {{domxref("EventTarget")}} | The event target (the topmost target in the DOM tree). |
| `type` {{readonlyInline}} | {{domxref("DOMString")}} | The type of event. |
| `bubbles` {{readonlyInline}} | {{jsxref("Boolean")}} | Whether the event normally bubbles or not. |
| `cancelable` {{readonlyInline}} | {{jsxref("Boolean")}} | Whether the event is cancellable or not. |
## Evénements liés
- [`fullscreenchange`](/fr/docs/Mozilla_event_reference/fullscreenchange)
## Voir aussi
- [Utilisation du mode plein écran](/fr/docs/DOM/Using_full-screen_mode)
|