tenfourfox/testing/web-platform/tests/WebIDL/valid/xml/partial-interface.widlprocxml
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

30 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>