Commit b204a910 authored by verwaest's avatar verwaest Committed by Commit bot

Remove temporary hack re deleting hidden properties

BUG=

Review URL: https://codereview.chromium.org/1222223002

Cr-Commit-Position: refs/heads/master@{#29639}
parent 541aa577
......@@ -5231,14 +5231,6 @@ MaybeHandle<Object> JSReceiver::DeleteProperty(LookupIterator* it,
return it->factory()->false_value();
}
Handle<JSObject> holder = it->GetHolder<JSObject>();
// TODO(verwaest): Remove this temporary compatibility hack when blink
// tests are updated.
if (!holder.is_identical_to(receiver) &&
!(receiver->IsJSGlobalProxy() && holder->IsJSGlobalObject())) {
return it->factory()->true_value();
}
it->Delete();
if (is_observed) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment