Skip to content

Instantly share code, notes, and snippets.

@tomlagier
Created July 3, 2017 04:55
Show Gist options
  • Save tomlagier/fbaf20602c66487cb6a16636fc24bd51 to your computer and use it in GitHub Desktop.
Save tomlagier/fbaf20602c66487cb6a16636fc24bd51 to your computer and use it in GitHub Desktop.
interface Paint { };
interface SolidColor : Paint {
attribute double red;
attribute double green;
attribute double blue;
};
interface Pattern : Paint {
attribute DOMString imageURL;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment