blob: 9010cd5d6665f326594944e75ec10d6475d9bae4 [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>S12.6.4_D1</p>
<div id='console'></div>
<script>
try {
/**
* @name: S12.6.4_D1;
* @section: 12.6.4;
* @assertion: If new properties are added to the object being
* enumerated during enumeration, the newly added properties to be visited in the active
* enumeration;
*/
__obj={aa:1,ba:2,ca:3};
__source={sra:9,srb:8,src:7};
__accum="";
for (__key in __obj){
__accum+=(__key+__obj[__key]);
add2hash(__obj,__source);
}
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (!(
(__accum.indexOf("aa1")!==-1)&&
(__accum.indexOf("ba2")!==-1)&&
(__accum.indexOf("ca3")!==-1)&&
(__accum.indexOf("sra9")!==-1)&&
(__accum.indexOf("srb8")!==-1)&&
(__accum.indexOf("src7")!==-1)
)) {
testFailed('#1: the newly added properties to be visited in the active enumeration');
}
//
//////////////////////////////////////////////////////////////////////////////
function add2hash(hash_map_target, hash_map_be_added){
if (added) return;
for (key in hash_map_be_added){
hash_map_target[key] = hash_map_be_added[key];
}
var added = true;
}
} 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>