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

28 lines
984 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Definitions SYSTEM "widlprocxml.dtd">
<Definitions>
<webidl>interface Person {
[PutForwards=full] readonly attribute <ref>Name</ref> name;
attribute unsigned short age;
};</webidl>
<Interface name="Person" id="::Person">
<webidl>interface Person {
[PutForwards=full] readonly attribute <ref>Name</ref> name;
attribute unsigned short age;
};</webidl>
<Attribute readonly="readonly" name="name" id="::Person::name">
<webidl> [PutForwards=full] readonly attribute <ref>Name</ref> name;</webidl>
<ExtendedAttributeList>
<ExtendedAttribute name="PutForwards" value="full">
<webidl>PutForwards</webidl>
</ExtendedAttribute>
</ExtendedAttributeList>
<Type name="Name"/>
</Attribute>
<Attribute name="age" id="::Person::age">
<webidl> attribute unsigned short age;</webidl>
<Type type="unsigned short"/>
</Attribute>
</Interface>
</Definitions>