mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 3bfdeb8976fc51748935c8d1f1014dfba8e08dfb
This commit is contained in:
parent
fcd6beb608
commit
cb63cfd5c7
185 changed files with 3083 additions and 1074 deletions
|
@ -38,14 +38,6 @@ test(function() {
|
|||
assert_equals('exist', that.prop, 'Confirm to prevent deleting a property.');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
test(function() {
|
||||
['foo', 42, null, undefined].forEach(function(that) {
|
||||
assert_throws(new TypeError(),
|
||||
function() { Object.freeze(that) });
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -38,13 +38,6 @@ test(function() {
|
|||
assert_equals(undefined, that.prop, 'Confirm to be able to delete a property.');
|
||||
});
|
||||
});
|
||||
|
||||
test(function() {
|
||||
['foo', 42, null, undefined].forEach(function(that) {
|
||||
assert_throws(new TypeError(),
|
||||
function() { Object.preventExtensions(that) });
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -38,13 +38,6 @@ test(function() {
|
|||
assert_equals('changed', that.prop, 'Confirm to prevent deleting a property.');
|
||||
});
|
||||
});
|
||||
|
||||
test(function() {
|
||||
['foo', 42, null, undefined].forEach(function(that) {
|
||||
assert_throws(new TypeError(),
|
||||
function() { Object.seal(that) });
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue