haikuwebkit/LayoutTests/fast/events/resources/standalone-image-drag-to-ed...

22 lines
649 B
HTML

<html><body style='margin: 0 0 0 0;'><div style='height: 100px; border: solid 1px black;' contenteditable=true>
This layout test is checks that we don't crash when a stand alone image is dragged into a content editable div. <br />
<a href='rdar://problem/5021127'>rdar://problem/5021127</a>
</div></body>
<script>
function waitForImageLoad()
{
if (!window.testRunner)
return;
var img = document.body.getElementsByTagName("img")[0];
if (img.width != 0)
testRunner.notifyDone();
else {
img.addEventListener("load", function() {
testRunner.notifyDone();
}, false);
}
}
</script>
</html>