blob: 7da508bcb5c8fa8f4dce347ba695dc6c7b785362 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Definitions SYSTEM "widlprocxml.dtd">
<Definitions>
<webidl>interface B {
void g();
void g(<ref>B</ref> b);
void g([AllowAny] DOMString s);
};</webidl>
<Interface name="B" id="::B">
<webidl>interface B {
void g();
void g(<ref>B</ref> b);
void g([AllowAny] DOMString s);
};</webidl>
<Operation name="g" id="::B::g">
<webidl> void g();</webidl>
<Type type="void"/>
<ArgumentList/>
</Operation>
<Operation name="g" id="::B::g">
<webidl> void g(<ref>B</ref> b);</webidl>
<Type type="void"/>
<ArgumentList>
<Argument name="b">
<Type name="B"/>
</Argument>
</ArgumentList>
</Operation>
<Operation name="g" id="::B::g">
<webidl> void g([AllowAny] DOMString s);</webidl>
<Type type="void"/>
<ArgumentList>
<Argument name="s">
<ExtendedAttributeList>
<ExtendedAttribute name="AllowAny">
<webidl>AllowAny</webidl>
</ExtendedAttribute>
</ExtendedAttributeList>
<Type type="DOMString"/>
</Argument>
</ArgumentList>
</Operation>
</Interface>
</Definitions>
|