[Webkit-unassigned] [Bug 117616] New: Web Inspector: JS PrettyPrinting in do/while loops, "while" should be on the same line as "}" if there was a closing brace

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 13 16:21:43 PDT 2013


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

           Summary: Web Inspector: JS PrettyPrinting in do/while loops,
                    "while" should be on the same line as "}" if there was
                    a closing brace
           Product: WebKit
           Version: 528+ (Nightly build)
          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,
                    graouts at apple.com


TEST:

  do{"x"}while(0);

CURRENTLY:

  do {
    "x"
  }
  while (0);

EXPECTED:

  do {
    "x"
  } while (0);

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