projects
/
profile
/
ivi
/
webkit-efl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
tizen beta release
[profile/ivi/webkit-efl.git]
/
LayoutTests
/
fast
/
js
/
kde
/
script-tests
/
literals.js
1
var x = 0;
2
eval("\u0009 \u000B \u000C \u00A0x = 1;");
3
shouldBe("x", "1");
4
5
// hex (non-normative)
6
shouldBe("0x0", "0");
7
shouldBe("0xF", "15");
8
shouldBe("0xFF", "255");
9
10
// octal (non-normative)
11
shouldBe("01", "1");
12
shouldBe("010", "8");
13
shouldBe("09", "9");
14
shouldBe("019", "19");