Changeset 182867 in webkit
- Timestamp:
- Apr 15, 2015, 4:09:27 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r182834 r182867 1 2015-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 1 13 2015-04-14 Joseph Pecoraro <pecoraro@apple.com> 2 14 -
trunk/Source/WebInspectorUI/UserInterface/Models/IssueMessage.js
r182662 r182867 76 76 break; 77 77 78 case "html": 78 case "html": // COMPATIBILITY (iOS 6). 79 79 case "css": 80 case "wml":81 80 case "xml": 82 81 this._type = WebInspector.IssueMessage.Type.PageIssue; … … 87 86 break; 88 87 88 case "security": 89 this._type = WebInspector.IssueMessage.Type.SecurityIssue; 90 break; 91 89 92 case "console-api": 93 case "storage": 94 case "appcache": 95 case "rendering": 90 96 case "other": 91 97 this._type = WebInspector.IssueMessage.Type.OtherIssue;
Note:
See TracChangeset
for help on using the changeset viewer.