blob: f11fd37ee3dde939d1876123795dbee722d75cd3 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function log(message)
{
document.getElementById('console').appendChild(document.createTextNode(message + "\n"));
}
function test()
{
log("Test that calling WebKitBlobBuilder.append with null value should not cause crash.");
var builder = new WebKitBlobBuilder();
builder.append(null);
log("DONE");
}
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body onload="test()">
<pre id='console'></pre>
</body>
</html>