blob: dad384ce4c3441bf87f796d689d38d456a8d5dda [file] [log] [blame]
<!DOCTYPE html>
<p>This test passes if it does not assert or crash.</p>
<input autofocus ontransitionend="transitionFinished();">
<style>
input {
transition: ease, 50ms;
shape-outside: padding-box;
}
</style>
<script>
function transitionFinished() {
if (window.testRunner)
testRunner.notifyDone();
}
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
</script>