[Webkit-unassigned] [Bug 126004] New: Implement ArrayBuffer.isView

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 19 11:51:07 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=126004

           Summary: Implement ArrayBuffer.isView
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bfulgham at webkit.org


We need an implementation of ArrayBuffer.isView, added to the ECMA specification as of the May 14, 2013 draft:

15.13.5.4.2 ArrayBuffer.isView ( arg )
The isView function takes one argument arg, and performs the following steps are taken:
1. If Type(arg) is not Object, return false.
2. If arg is an exotic Array object, then return true.
3. If arg has a [[ViewedArrayBuffer]] internal data property, then return true.
4. Return false.

This is needed to fully comply with WebGL requirements.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list