summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/doc_whitespace-property-names.html
blob: 6479a5978c99ca4aaa73330eab6304814a2fc28a (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>Debugger + Whitespace property name test page</title>
  </head>

  <body>
    <script>
    window.doPause = function () {
      var obj = {
        "": 0,
        " ": 1,
        "\r": 2,
        "\n": 3,
        "\t": 4,
        "\f": 5,
        "\uFEFF": 6,
        "\xA0": 7
      };
      debugger;
    };
    </script>
  </body>

</html>