blob: 4a18b80b704b4f4695529ab4fa5704c23dd330ac (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Definitions SYSTEM "widlprocxml.dtd">
<Definitions>
<webidl>interface A {
stringifier DOMString ();
};
interface A {
stringifier;
};</webidl>
<Interface name="A" id="::A">
<webidl>interface A {
stringifier DOMString ();
};</webidl>
<Operation stringifier="stringifier">
<webidl> stringifier DOMString ();</webidl>
<Type type="DOMString"/>
<ArgumentList/>
</Operation>
</Interface>
<Interface name="A" id="::A">
<webidl>interface A {
stringifier;
};</webidl>
<Stringifier>
<webidl> stringifier;</webidl>
</Stringifier>
</Interface>
</Definitions>
|