blob: aeffd7635743131cb4ee95706354c3655ef2d46a [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<div id="container"></div>
<script>
var object = document.createElement("object");
container.appendChild(object);
object.data = "x";
object.type = "image/webp";
object.align = "Right";
test(()=> { }, "No crash or DCHECK failure");
</script>