gecko-dev/devtools/client/debugger/test/mochitest/doc_whitespace-property-names.html

32 lines
571 B
HTML

<!-- 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,
"\u2028": 8,
"\u2029": 9,
};
debugger;
};
</script>
</body>
</html>