Update CSS tests to revision 584b6cdd10401df603bd7bdf4ec801fcddc65468

This commit is contained in:
Ms2ger 2015-09-04 12:21:22 +02:00
parent 8d21a79246
commit 58b5cd27de
1279 changed files with 30378 additions and 18158 deletions

View file

@ -15,16 +15,3 @@ if (window.opener && window.opener.explicit_timeout) {
}
setup(props);
add_completion_callback(function() {
add_completion_callback(function(tests, status) {
var harness_status = {
"status": status.status,
"message": status.message,
"stack": status.stack
};
var test_results = tests.map(function(x) {
return {name:x.name, status:x.status, message:x.message, stack:x.stack}
});
window.opener.postMessage([test_results, harness_status], "*");
})
});