| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 DirXML: "dirxml", | 248 DirXML: "dirxml", |
| 249 Table: "table", | 249 Table: "table", |
| 250 Trace: "trace", | 250 Trace: "trace", |
| 251 Clear: "clear", | 251 Clear: "clear", |
| 252 StartGroup: "startGroup", | 252 StartGroup: "startGroup", |
| 253 StartGroupCollapsed: "startGroupCollapsed", | 253 StartGroupCollapsed: "startGroupCollapsed", |
| 254 EndGroup: "endGroup", | 254 EndGroup: "endGroup", |
| 255 Assert: "assert", | 255 Assert: "assert", |
| 256 Result: "result", | 256 Result: "result", |
| 257 Profile: "profile", | 257 Profile: "profile", |
| 258 ProfileEnd: "profileEnd" | 258 ProfileEnd: "profileEnd", |
| 259 Command: "command" |
| 259 } | 260 } |
| 260 | 261 |
| 261 WebInspector.ConsoleMessage.MessageLevel = { | 262 WebInspector.ConsoleMessage.MessageLevel = { |
| 262 Log: "log", | 263 Log: "log", |
| 263 Info: "info", | 264 Info: "info", |
| 264 Warning: "warning", | 265 Warning: "warning", |
| 265 Error: "error", | 266 Error: "error", |
| 266 Debug: "debug" | 267 Debug: "debug" |
| 267 } | 268 } |
| 268 | 269 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 { | 312 { |
| 312 if (!WebInspector.settings.preserveConsoleLog.get()) | 313 if (!WebInspector.settings.preserveConsoleLog.get()) |
| 313 this._console.clearMessages(); | 314 this._console.clearMessages(); |
| 314 } | 315 } |
| 315 } | 316 } |
| 316 | 317 |
| 317 /** | 318 /** |
| 318 * @type {?WebInspector.ConsoleModel} | 319 * @type {?WebInspector.ConsoleModel} |
| 319 */ | 320 */ |
| 320 WebInspector.console = null; | 321 WebInspector.console = null; |
| OLD | NEW |