diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-06-02 14:45:29 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-06-02 14:45:29 +0200 |
commit | 7e310d19493f4a708f43dd28ff18e09eb9cff967 (patch) | |
tree | cb0add6043abc4a46e83cfd8b9f5f38376612f75 /src/components/script/dom | |
parent | 59cef940e899a900b4601dbbc9b4d4bd96a96687 (diff) | |
download | servo-7e310d19493f4a708f43dd28ff18e09eb9cff967.tar.gz servo-7e310d19493f4a708f43dd28ff18e09eb9cff967.zip |
Enable some more dictionary codegen tests.
Diffstat (limited to 'src/components/script/dom')
-rw-r--r-- | src/components/script/dom/webidls/TestBinding.webidl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/script/dom/webidls/TestBinding.webidl b/src/components/script/dom/webidls/TestBinding.webidl index 467abce3328..5736911e504 100644 --- a/src/components/script/dom/webidls/TestBinding.webidl +++ b/src/components/script/dom/webidls/TestBinding.webidl @@ -23,30 +23,30 @@ enum TestEnum { "", "foo", "bar" }; }; */ dictionary TestDictionaryDefaults { - // boolean booleanValue = false; - // byte byteValue = 7; - // octet octetValue = 7; + boolean booleanValue = false; + byte byteValue = 7; + octet octetValue = 7; short shortValue = 7; unsigned short unsignedShortValue = 7; long longValue = 7; unsigned long unsignedLongValue = 7; - // long long longLongValue = 7; - // unsigned long long unsignedLongLongValue = 7; + long long longLongValue = 7; + unsigned long long unsignedLongLongValue = 7; // float floatValue = 7.0; // double doubleValue = 7.0; DOMString stringValue = ""; // TestEnum enumValue = "bar"; any anyValue = null; - // boolean? nullableBooleanValue = false; - // byte? nullableByteValue = 7; - // octet? nullableOctetValue = 7; + boolean? nullableBooleanValue = false; + byte? nullableByteValue = 7; + octet? nullableOctetValue = 7; short? nullableShortValue = 7; unsigned short? nullableUnsignedShortValue = 7; long? nullableLongValue = 7; unsigned long? nullableUnsignedLongValue = 7; - // long long? nullableLongLongValue = 7; - // unsigned long long? nullableUnsignedLongLongValue = 7; + long long? nullableLongLongValue = 7; + unsigned long long? nullableUnsignedLongLongValue = 7; // float? nullableFloatValue = 7.0; // double? nullableDoubleValue = 7.0; DOMString? nullableStringValue = ""; |