1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-07-20 22:18:32 +00:00
Files
UXP/devtools/client/debugger/test/mochitest/doc_whitespace-property-names.html
T

30 lines
528 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
};
debugger;
};
</script>
</body>
</html>