tenfourfox/testing/web-platform/tests/WebIDL/valid/idl/enum.widl

8 lines
180 B
Plaintext
Raw Normal View History

2017-04-19 07:56:45 +00:00
enum MealType { "rice", "noodles", "other" };
interface Meal {
attribute MealType type;
attribute float size; // in grams
void initialize(MealType type, float size);
};