mirror of
https://github.com/servo/servo.git
synced 2025-07-06 15:03:40 +01:00
29 lines
785 B
XML
29 lines
785 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE Definitions SYSTEM "widlprocxml.dtd">
|
|
<Definitions>
|
|
<webidl>interface Foo {
|
|
attribute DOMString bar;
|
|
};
|
|
|
|
partial interface Foo {
|
|
attribute DOMString quux;
|
|
};</webidl>
|
|
<Interface name="Foo" id="::Foo">
|
|
<webidl>interface Foo {
|
|
attribute DOMString bar;
|
|
};</webidl>
|
|
<Attribute name="bar" id="::Foo::bar">
|
|
<webidl> attribute DOMString bar;</webidl>
|
|
<Type type="DOMString"/>
|
|
</Attribute>
|
|
</Interface>
|
|
<Interface name="Foo" partial="partial" id="::Foo">
|
|
<webidl>partial interface Foo {
|
|
attribute DOMString quux;
|
|
};</webidl>
|
|
<Attribute name="quux" id="::Foo::quux">
|
|
<webidl> attribute DOMString quux;</webidl>
|
|
<Type type="DOMString"/>
|
|
</Attribute>
|
|
</Interface>
|
|
</Definitions>
|