aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/xslt/element/when/index.md
blob: e6f51bbc3a34d1e5be4f29d7ef43d44503e60288 (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: when
slug: Web/XSLT/Element/when
tags:
  - Référence_XSLT
translation_of: Web/XSLT/Element/when
original_slug: Web/XSLT/when
---
{{ XsltRef() }}

L'élément `<xsl:when>` apparaît toujours dans un élément `<xsl:choose>`, et se comporte comme une structure conditionelle 'case'.

### Syntaxe

    <xsl:when test=EXPRESSION>
    	MODÈLE
    </xsl:when>

### Attribut obligatoire

- `test`
  - : Définit une expression booléenne à évaluer. Si elle est vraie, le contenu de l'élément est exécuté ; sinon, il est ignoré.

### Attributs obligatoires

Aucun.

### Type

Sous-instruction, apparaît toujours dans un élément `<xsl:choose>`.

### Définition

[XSLT 1.0, section 9.2](http://www.w3.org/TR/xslt#section-Conditional-Processing-with-xsl:choose).

### Support Gecko

Supporté.