summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-compressed/v2/iframe.html
blob: 04a2094e0d7d403deb8d6d111f871e2f1bc8c8e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/ -->
<!doctype html>

<html>
  <head>
    <meta charset="utf-8"/>
    <title>Iframe v2</title>
  </head>

  <body>
    <!-- A simple inline script, that helps to cover breakable lines/columns -->
    <!-- Have them define first, so that we avoid shifting lines when adding new scripts later in the html -->
    <script>
      console.log('iframe breakable-line');
      // Comment
    </script>

    <!-- A second inline script, that helps cover bugs when having two distinct inline scripts -->
    <script>
      console.log("second iframe inline script");
      // Another comment
    </script>

    <!-- A script whose URL is loaded in many different ways -->
    <script src="same-url.sjs"></script>
  </body>

</html>