[Webkit-unassigned] [Bug 134007] New: Web Inspector: JS PrettyPrinting unary - and + issues

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 17 17:02:34 PDT 2014


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

           Summary: Web Inspector: JS PrettyPrinting unary - and + issues
           Product: WebKit
           Version: 412.x
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: joepeck at webkit.org
                CC: timothy at apple.com, joepeck at webkit.org,
                    webkit-bug-importer at group.apple.com,
                    jonowells at apple.com, graouts at webkit.org


TEST:

    f(-1);
    x = -1 + 1;
    f(+1);
    x = +1 + 1;

OUTPUT:

    f( - 1);
    x = - 1 + 1;
    f( + 1);
    x = + 1 + 1;

EXPECTED:

    f(-1);
    x = -1 + 1;
    f(+1);
    x = +1 + 1;

-- 
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