Update web-platform-tests to revision 3bfdeb8976fc51748935c8d1f1014dfba8e08dfb

This commit is contained in:
WPT Sync Bot 2019-03-28 22:09:18 -04:00
parent fcd6beb608
commit cb63cfd5c7
185 changed files with 3083 additions and 1074 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>