blob: 77b5ebb46d34b180de5f5aeac65539c76e7e29ed (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
---
title: DOMLocator
slug: orphaned/Web/API/DOMLocator
tags:
- API
- DOM
translation_of: Web/API/DOMLocator
original_slug: Web/API/DOMLocator
---
<p>{{APIRef("DOM")}}{{obsolete_header}}</p>
<div class="warning">
<p>NOTE : N'est pas implémenté dans Mozilla</p>
</div>
<p>Indique un emplacement, par exemple où une erreur s'est produite. Renvoyé par DOMError.location.</p>
<h2 id="Propriétés">Propriétés</h2>
<dl>
<dt>{{domxref("DOMLocator.lineNumber")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
<dt>{{domxref("DOMLocator.columnNumber")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
<dt>{{domxref("DOMLocator.byteOffset")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
<dt>{{domxref("DOMLocator.utf16Offset")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
<dt>{{domxref("DOMLocator.relatedNode")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
<dt>{{domxref("DOMLocator.uri")}} {{ReadOnlyInline}}</dt>
<dd>Renvoie un entier positif ou -1.</dd>
</dl>
<h2 id="Méthodes">Méthodes</h2>
<p><em>Cette interface n'implémente ni n'hérite d'aucune méthode.</em></p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName("DOM3 Core", "core.html#Interfaces-DOMLocator", "DOMLocator")}}</td>
<td>{{Spec2("DOM3 Core")}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
|