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

« back to all changes in this revision

Viewing changes to content/firebug/tests/testPanel.html

  • Committer: Bazaar Package Importer
  • Author(s): Jared Greenwald
  • Date: 2008-02-21 17:34:24 UTC
  • Revision ID: james.westby@ubuntu.com-20080221173424-illircvfpyvnp4uo
Tags: upstream-1.1.0~b11+svn317
ImportĀ upstreamĀ versionĀ 1.1.0~b11+svn317

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
2
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
3
 
 
4
<html xmlns="http://www.w3.org/1999/xhtml">
 
5
<head>
 
6
 
 
7
<script>
 
8
 
 
9
var FirebugPanel = 
 
10
{
 
11
    supportsObject: function(object)
 
12
    {
 
13
        return object instanceof Element;
 
14
    },
 
15
    
 
16
    select: function(object)
 
17
    {
 
18
        document.body.innerHTML = object;
 
19
    }
 
20
};
 
21
 
 
22
</script>
 
23
 
 
24
<style type="text/css">
 
25
 
 
26
body {
 
27
    background: blue;
 
28
}
 
29
 
 
30
</style>
 
31
 
 
32
</head>
 
33
 
 
34
<body>
 
35
</body>
 
36
</html>