~jetsaredim/firefox-extensions/firebug.upstream

« back to all changes in this revision

Viewing changes to content/firebug/tests/.svn/text-base/frame.html.svn-base

  • Committer: Jared Greenwald
  • Date: 2008-04-22 18:20:42 UTC
  • Revision ID: jgreenwa@4lom-20080422182042-90kbumm805h2hjt6
 * new upstream source (v1.2~b21+svn572)

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 src="stuff.js"></script>
8
 
 
9
 
<script>
10
 
 
11
 
console.log('Greetings earthling.')
12
 
 
13
 
function foo()
14
 
{
15
 
    console.log("Ruf!");
16
 
}
17
 
 
18
 
</script>
19
 
 
20
 
<style type="text/css">
21
 
 
22
 
body {
23
 
    background: blue;
24
 
}
25
 
 
26
 
</style>
27
 
 
28
 
</head>
29
 
 
30
 
<body onload="console.log('Hello from Frameland')">
31
 
    <iframe src="frame2.html">
32
 
</body>
33
 
</html>