Files
palemoon27/testing/web-platform/tests/WebIDL/valid/idl/enum.widl
T

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);
};