Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / js / bitwise-and-on-undefined-expected.txt
blob601e64f5f801b10e61ece27ce6dfa03dd834ffff
1 This tests the bitwise operators work correctly in conjunction with undefined and null.
2 SUCCESS: 0 & null = 0
3 SUCCESS: 0 & undefined = 0
4 SUCCESS: 1 & null = 0
5 SUCCESS: 1 & undefined = 0
6 SUCCESS: 0 | null = 0
7 SUCCESS: 0 | undefined = 0
8 SUCCESS: 1 | null = 1
9 SUCCESS: 1 | undefined = 1
10 SUCCESS: 0 ^ null = 0
11 SUCCESS: 0 ^ undefined = 0
12 SUCCESS: 1 ^ null = 1
13 SUCCESS: 1 ^ undefined = 1