-
Notifications
You must be signed in to change notification settings - Fork 869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NativeArrayBuffer.initPrototypeId throws IllegalArgumentException #437
Comments
Assigned @gbrail as he authored the class. |
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jun 17, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jul 1, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jul 1, 2018
szegedi
added a commit
to szegedi/rhino
that referenced
this issue
Jul 1, 2018
gbrail
pushed a commit
that referenced
this issue
Jul 12, 2018
rbri
added a commit
to HtmlUnit/htmlunit-rhino-fork
that referenced
this issue
Jul 28, 2018
Fixed by rbri: #464 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Trying to access property "isView" on a
NativeArrayBuffer
throws anIllegalArgumentException
. The issue seems to be thatPrototypeValues.maxId
forNativeArrayBuffer
is 3 (to account forId_isView
property) butinitPrototypeId
only recognizesId_constructor
andId_slice
.Id_isView
seems to have some special handling as it's separately initialized; there's this whole business with it andConstructorId_isView
that I don't fully understand how's it supposed to work.Here's a little test that illustrates the issue:
It results in:
The text was updated successfully, but these errors were encountered: