Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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> |