summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/WebIDL/valid/idl/enum.widl
blob: 851fca2e6f61313b4ce285e69d773f02c3264d89 (plain)
1
2
3
4
5
6
7
8
enum MealType { "rice", "noodles", "other" };

interface Meal {
  attribute MealType type;
  attribute float size;     // in grams

  void initialize(MealType type, float size);
};