~ubuntu-branches/ubuntu/karmic/firebug/karmic

« back to all changes in this revision

Viewing changes to content/firebug/tests/breakpoint.js

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-01-08 06:23:15 UTC
  • mfrom: (1.1.2 upstream) (0.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090108062315-8axszgu22g9a2uyn
Tags: 1.2.1-1ubuntu1
* Merge with Debian unstable (LP: #314962)
* debian/control: 
  - Changed references of Iceweasel to Firefox
  - Changed dependency on iceweasel to firefox | abrowser 
    (also close LP: #272959)
  - Changed binary name to firebug
* debian/rules: Changed tag name from makebuilddir/iceweasel-firebug to
  makebuilddir/firebug::
* Created debian/links, debian/docs and debian/install from debian ones

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
var a = 44;
3
 
var b = 33;
4
 
 
5
 
function foo()
6
 
{
7
 
    alert("hi");
8
 
    var x = 1;
9
 
    var y = 2;
10
 
}
11
 
 
12
 
function bar()
13
 
{
14
 
    debugger;
15
 
}
16
 
 
17
 
 
18
 
//debugger;
19
 
bar();
20
 
var c = 22;
21
 
var d = 11;
22
 
var e = 0;