RESOLVED FIXED 161457
Align cross-Origin Object.getOwnPropertyNames() with the HTML specification
https://bugs.webkit.org/show_bug.cgi?id=161457
Summary Align cross-Origin Object.getOwnPropertyNames() with the HTML specification
Chris Dumez
Reported 2016-08-31 14:37:30 PDT
Align cross-Origin Object.getOwnPropertyNames() with the HTML specification: - https://html.spec.whatwg.org/#windowproxy-ownpropertykeys - https://html.spec.whatwg.org/#location-ownpropertykeys - https://html.spec.whatwg.org/#crossoriginproperties-(-o-) We should list cross origin properties. Firefox complies with the specification. However, WebKit returns an empty array and logs a security error message.
Attachments
Patch (11.19 KB, patch)
2016-08-31 15:00 PDT, Chris Dumez
no flags
Patch (11.28 KB, patch)
2016-09-02 11:44 PDT, Chris Dumez
no flags
Patch (11.30 KB, patch)
2016-09-02 12:10 PDT, Chris Dumez
no flags
Patch (11.31 KB, patch)
2016-09-02 12:13 PDT, Chris Dumez
no flags
Patch (11.16 KB, patch)
2016-09-03 15:22 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2016-08-31 15:00:56 PDT
Chris Dumez
Comment 2 2016-09-02 11:44:07 PDT
Chris Dumez
Comment 3 2016-09-02 12:10:48 PDT
Chris Dumez
Comment 4 2016-09-02 12:13:20 PDT
Darin Adler
Comment 5 2016-09-03 08:21:44 PDT
Comment on attachment 287798 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=287798&action=review > Source/WebCore/bindings/js/JSDOMWindowCustom.cpp:322 > +static void addCrossOriginPropertyNames(ExecState* exec, PropertyNameArray& propertyNames) In new code we normally want to write "ExecState& state" rather than "ExecState* exec", or "VM& vm". It’s a bit costly to go from ExecState to VM each time, and so it’s a better idiom to either take a VM& or put the VM& in a local variable and use that. > Source/WebCore/bindings/js/JSDOMWindowCustom.cpp:337 > + propertyNames.add(Identifier::fromString(exec, "window")); > + propertyNames.add(Identifier::fromString(exec, "self")); > + propertyNames.add(Identifier::fromString(exec, "location")); > + propertyNames.add(Identifier::fromString(exec, "close")); > + propertyNames.add(Identifier::fromString(exec, "closed")); > + propertyNames.add(Identifier::fromString(exec, "focus")); > + propertyNames.add(Identifier::fromString(exec, "blur")); > + propertyNames.add(Identifier::fromString(exec, "frames")); > + propertyNames.add(Identifier::fromString(exec, "length")); > + propertyNames.add(Identifier::fromString(exec, "top")); > + propertyNames.add(Identifier::fromString(exec, "opener")); > + propertyNames.add(Identifier::fromString(exec, "parent")); > + propertyNames.add(Identifier::fromString(exec, "postMessage")); It’s pretty inefficient to look up strings in the identifier table every time this function is called. Maybe this is not performance critical? These are listed in what looks like arbitrary order. Should they be sorted in some way? This looks like an unrolled loop. Could we use an actual loop instead? Typically makes smaller code. > Source/WebCore/bindings/js/JSLocationCustom.cpp:111 > +static void addCrossOriginPropertyNames(ExecState* exec, PropertyNameArray& propertyNames) Same comment as above. On Windows we do "all in one" compiles, so this function conflicts with the one in JSDOMWindowCustom. We can work around that by giving them different names.
Chris Dumez
Comment 6 2016-09-03 14:28:08 PDT
Comment on attachment 287798 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=287798&action=review >> Source/WebCore/bindings/js/JSDOMWindowCustom.cpp:337 >> + propertyNames.add(Identifier::fromString(exec, "postMessage")); > > It’s pretty inefficient to look up strings in the identifier table every time this function is called. Maybe this is not performance critical? > > These are listed in what looks like arbitrary order. Should they be sorted in some way? > > This looks like an unrolled loop. Could we use an actual loop instead? Typically makes smaller code. Ok, I'll sort them and use a loop. FYI, I used the order that is in the spec but it wasn't all that arbitrary :)
Chris Dumez
Comment 7 2016-09-03 15:22:15 PDT
WebKit Commit Bot
Comment 8 2016-09-03 15:52:50 PDT
Comment on attachment 287869 [details] Patch Clearing flags on attachment: 287869 Committed r205409: <http://trac.webkit.org/changeset/205409>
WebKit Commit Bot
Comment 9 2016-09-03 15:52:55 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.