blob: 3109c3a48f46671272c2efcf12607197d50b7dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var largeNeg = -2715228072;
if ((largeNeg >>> 5) == 49366850)
document.write("PASS<br>");
else
document.write(largeNeg >>> 5);
var lhs = -1699021058.1;
var rhs = 0;
if ((lhs >>> rhs) == 2595946238)
document.write("PASS<br>");
else
document.write(lhs >>> rhs);
</script>
</body>
|