Changeset 182867 in webkit


Ignore:
Timestamp:
Apr 15, 2015, 4:09:27 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Handle all possible Console message Source types in IssueMessage
https://bugs.webkit.org/show_bug.cgi?id=143803

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-04-15
Reviewed by Brian Burg.

  • UserInterface/Models/IssueMessage.js:

(WebInspector.IssueMessage):
Update the switch to handle all possible console message sources.
"wml" was legacy and no longer supported.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r182834 r182867  
     12015-04-15  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Handle all possible Console message Source types in IssueMessage
     4        https://bugs.webkit.org/show_bug.cgi?id=143803
     5
     6        Reviewed by Brian Burg.
     7
     8        * UserInterface/Models/IssueMessage.js:
     9        (WebInspector.IssueMessage):
     10        Update the switch to handle all possible console message sources.
     11        "wml" was legacy and no longer supported.
     12
    1132015-04-14  Joseph Pecoraro  <pecoraro@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Models/IssueMessage.js

    r182662 r182867  
    7676            break;
    7777
    78         case "html":
     78        case "html": // COMPATIBILITY (iOS 6).
    7979        case "css":
    80         case "wml":
    8180        case "xml":
    8281            this._type = WebInspector.IssueMessage.Type.PageIssue;
     
    8786            break;
    8887
     88        case "security":
     89            this._type = WebInspector.IssueMessage.Type.SecurityIssue;
     90            break;
     91
    8992        case "console-api":
     93        case "storage":
     94        case "appcache":
     95        case "rendering":
    9096        case "other":
    9197            this._type = WebInspector.IssueMessage.Type.OtherIssue;
Note: See TracChangeset for help on using the changeset viewer.