Changeset 180113 in webkit


Ignore:
Timestamp:
Feb 14, 2015 12:41:18 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Symbol RemoteObject should not send sub-type
https://bugs.webkit.org/show_bug.cgi?id=141604

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-02-14
Reviewed by Brian Burg.

Source/JavaScriptCore:

  • inspector/InjectedScriptSource.js:

LayoutTests:

  • inspector/model/remote-object-expected.txt:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r180111 r180113  
     12015-02-14  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Symbol RemoteObject should not send sub-type
     4        https://bugs.webkit.org/show_bug.cgi?id=141604
     5
     6        Reviewed by Brian Burg.
     7
     8        * inspector/model/remote-object-expected.txt:
     9
    1102015-02-14  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/LayoutTests/inspector/model/remote-object-expected.txt

    r179659 r180113  
    2020{
    2121  "_type": "symbol",
    22   "_subtype": "symbol",
    2322  "_objectId": "<filtered>",
    2423  "_description": "Symbol()"
     
    2928{
    3029  "_type": "symbol",
    31   "_subtype": "symbol",
    3230  "_objectId": "<filtered>",
    3331  "_description": "Symbol(test)"
  • trunk/Source/JavaScriptCore/ChangeLog

    r180102 r180113  
     12015-02-14  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Symbol RemoteObject should not send sub-type
     4        https://bugs.webkit.org/show_bug.cgi?id=141604
     5
     6        Reviewed by Brian Burg.
     7
     8        * inspector/InjectedScriptSource.js:
     9
    1102015-02-13  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Source/JavaScriptCore/inspector/InjectedScriptSource.js

    r179659 r180113  
    655655            return "null";
    656656
    657         if (this.isPrimitiveValue(obj))
     657        if (this.isPrimitiveValue(obj) || isSymbol(obj))
    658658            return null;
    659659
Note: See TracChangeset for help on using the changeset viewer.