Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html lang="en"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta charset="utf-8"> |
michael@0 | 5 | <title>Web Console test for bug 939783 - different console.trace() calls |
michael@0 | 6 | wrongly filtered as duplicates</title> |
michael@0 | 7 | <!-- Any copyright is dedicated to the Public Domain. |
michael@0 | 8 | http://creativecommons.org/publicdomain/zero/1.0/ --> |
michael@0 | 9 | <script type="application/javascript"> |
michael@0 | 10 | function foo1() { |
michael@0 | 11 | foo2(); |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | function foo1b() { |
michael@0 | 15 | foo2(); |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | function foo2() { |
michael@0 | 19 | foo3(); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | function foo3() { |
michael@0 | 23 | console.trace(); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | foo1(); foo1(); |
michael@0 | 27 | foo1b(); |
michael@0 | 28 | |
michael@0 | 29 | </script> |
michael@0 | 30 | </head> |
michael@0 | 31 | <body> |
michael@0 | 32 | <p>Web Console test for bug 939783 - different console.trace() calls |
michael@0 | 33 | wrongly filtered as duplicates</p> |
michael@0 | 34 | </body> |
michael@0 | 35 | </html> |