mirror of https://github.com/tc39/test262.git
candidate fix for line note on 259
This commit is contained in:
parent
61cd8c6ad7
commit
d869dc6ce3
|
@ -49,16 +49,23 @@ verifyNotWritable(teamMeeting, "conferenceCall", "nocheck");
|
|||
|
||||
try {
|
||||
teamMeeting.name = "IE Team Meeting";
|
||||
} catch (e) {}
|
||||
} catch (e) {
|
||||
assert(e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
var dateObj = new Date("10/31/2010 08:00");
|
||||
teamMeeting.startTime = dateObj;
|
||||
} catch (e) {}
|
||||
} catch (e) {
|
||||
assert(e instanceof TypeError);
|
||||
}
|
||||
|
||||
try {
|
||||
teamMeeting.conferenceCall = "4255551212";
|
||||
} catch (e) {}
|
||||
} catch (e) {
|
||||
assert(e instanceof TypeError);
|
||||
}
|
||||
|
||||
|
||||
assert(!teamMeeting.hasOwnProperty("name"));
|
||||
assert(!teamMeeting.hasOwnProperty("startTime"));
|
||||
|
|
Loading…
Reference in New Issue