tenfourfox/testing/web-platform/tests/WebIDL/valid/idl/enum.widl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

8 lines
180 B
Plaintext

enum MealType { "rice", "noodles", "other" };
interface Meal {
attribute MealType type;
attribute float size; // in grams
void initialize(MealType type, float size);
};