Closed
Bug 854435
Opened 13 years ago
Closed 12 years ago
Web Console Can Log Events Out of Order
Categories
(DevTools :: Console, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 755555
People
(Reporter: nik9000, Unassigned)
Details
(Keywords: testcase)
Attachments
(1 file)
|
376 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0
Build ID: 20130307122351
Steps to reproduce:
I added a log to my form validation code to make sure it was firing.
I turned on both Net and JS logging.
I submitted the form while invalid.
I submitted the form while valid.
Firefox version: 19.0.2
Actual results:
The form submission log line appeared above the form validation log line, leading me to believe that the validation wasn't firing at all. It looked like this:
[11:25:10.718] validating
[11:25:14.744] POST https://localhost/foo [HTTP/1.1 200 OK 18ms]
[11:25:14.548] validating
Expected results:
The form submission log line should have appeared below the form validation log line. Like this:
[11:25:10.718] validating
[11:25:14.548] validating
[11:25:14.744] POST https://localhost/foo [HTTP/1.1 200 OK 18ms]
| Reporter | ||
Comment 1•13 years ago
|
||
Attachment #729002 -
Attachment mime type: text/plain → text/html
Comment 2•12 years ago
|
||
I am seeing the same behaviour in 26.0
Updated•12 years ago
|
Component: Untriaged → Developer Tools: Console
Comment 3•12 years ago
|
||
Thanks for the bug report and triage.
Status: UNCONFIRMED → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
Updated•8 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•