Bug 15424
| Summary: | "null" and "undefined" printing in the Drosera console are poor | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Eric Seidel (no email) <eric> |
| Component: | Web Inspector (Deprecated) | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | ||
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | All | ||
| OS: | All | ||
Eric Seidel (no email)
"null" and "undefined" printing in the Drosera console are poor
var x = undefined
undefined
x
// nothing prints
var y = null
undefined
y
// nothing prints
var z = "undefined"
undefined
z
undefined
This is all very confusing. I would expect "undefined" and "null" to be special values and print the string "undefined" or "null" when printed. Some sort of special (styled) .toString() behavior for the Drosera console.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Timothy Hatcher
Not an issue in the Web Inspector's debugger and the Inspector's console.