blob: 7832cad29efaa566c0965c6d34fcdb3e4700debe [file] [log] [blame]
<html>
<head>
<meta charset='utf-8'>
<style>
.pass {
font-weight: bold;
color: green;
}
.fail {
font-weight: bold;
color: red;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function SputnikError(message)
{
this.message = message;
}
SputnikError.prototype.toString = function ()
{
return 'SputnikError: ' + this.message;
};
var sputnikException;
function testPrint(msg)
{
var span = document.createElement("span");
document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace
span.innerHTML = msg + '<br />';
}
function escapeHTML(text)
{
return text.toString().replace(/&/g, "&amp;").replace(/</g, "&lt;");
}
function printTestPassed(msg)
{
testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}
function printTestFailed(msg)
{
testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}
function testFailed(msg)
{
throw new SputnikError(msg);
}
var successfullyParsed = false;
</script>
</head>
<body>
<p>S7.7_A1</p>
<div id='console'></div>
<script>
try {
/**
* @name: S7.7_A1;
* @section: 7.7;
* @assertion: Correct interpretation of all punctuators;
* @description: Using all punctuators;
*/
//CHECK#1
({});[];
this.NaN;
1 < 2 > 3 <= 4 >= 5 == 6 != 7 === 8 !== 9;
1 + 2 - 3 * 4 % 5 / 6 << 7 >> 8 >>> 9;
this.NaN++; ++this.NaN; this.NaN--; --this.NaN;
1 & 2 | 3 ^ 4 && !5 || ~6;
1 ? 2 : 3;
this.NaN = 1; this.NaN += 2; this.NaN -= 3; this.NaN *= 4; this.NaN /= 5;
this.NaN %= 6; this.NaN <<= 7; this.NaN >>= 8; this.NaN >>>= 9;
this.NaN &= 1; this.NaN |= 2; this.NaN ^= 3;
} catch (ex) {
sputnikException = ex;
}
var successfullyParsed = true;
</script>
<script>
if (!successfullyParsed)
printTestFailed('successfullyParsed is not set');
else if (sputnikException)
printTestFailed(sputnikException);
else
printTestPassed("");
testPrint('<br /><span class="pass">TEST COMPLETE</span>');
</script>
</body>
</html>