Status: Untriaged
Owner: ----

New issue 4304 by [email protected]: String.prototype.normalize should return abrupt completion from ToString(this) (object or Symbol)
https://code.google.com/p/v8/issues/detail?id=4304

Version: V8 4.5.0 (candidate)
Architecture: native

What steps will reproduce the problem?
1.
```
var o = {
  toString: function() {
    throw new Test262Error();
  }
};


String.prototype.normalize.call(o);
```

What is the expected output?
The last line should throw the Test262Error. Also:

```
String.prototype.normalize.call(Symbol());
```

should throw a TypeError.

What do you see instead?

They're both returning an `illegal access` error.

Ref: 21.1.3.12 steps 1 to 3.


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to