Correct the initial value of wasClean in CloseEvent.

This commit is contained in:
Ms2ger 2015-05-06 12:36:06 +02:00
parent 94b3617629
commit 6498240340
2 changed files with 1 additions and 6 deletions

View file

@ -11,7 +11,7 @@ interface CloseEvent : Event {
};
dictionary CloseEventInit : EventInit {
boolean wasClean = true;
boolean wasClean = false;
unsigned short code = 0;
DOMString reason = "";
};

View file

@ -1,5 +0,0 @@
[constructor.html]
type: testharness
[new CloseEvent() without dictionary]
expected: FAIL