1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webconsole/test/test-bug_939783_console_trace_duplicates.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<!DOCTYPE html> 1.5 +<html lang="en"> 1.6 + <head> 1.7 + <meta charset="utf-8"> 1.8 + <title>Web Console test for bug 939783 - different console.trace() calls 1.9 + wrongly filtered as duplicates</title> 1.10 + <!-- Any copyright is dedicated to the Public Domain. 1.11 + http://creativecommons.org/publicdomain/zero/1.0/ --> 1.12 +<script type="application/javascript"> 1.13 +function foo1() { 1.14 + foo2(); 1.15 +} 1.16 + 1.17 +function foo1b() { 1.18 + foo2(); 1.19 +} 1.20 + 1.21 +function foo2() { 1.22 + foo3(); 1.23 +} 1.24 + 1.25 +function foo3() { 1.26 + console.trace(); 1.27 +} 1.28 + 1.29 +foo1(); foo1(); 1.30 +foo1b(); 1.31 + 1.32 +</script> 1.33 + </head> 1.34 + <body> 1.35 + <p>Web Console test for bug 939783 - different console.trace() calls 1.36 + wrongly filtered as duplicates</p> 1.37 + </body> 1.38 +</html>