| Index: LayoutTests/transitions/transition-shape-outside-crash.html
|
| diff --git a/LayoutTests/transitions/transition-shape-outside-crash.html b/LayoutTests/transitions/transition-shape-outside-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dad384ce4c3441bf87f796d689d38d456a8d5dda
|
| --- /dev/null
|
| +++ b/LayoutTests/transitions/transition-shape-outside-crash.html
|
| @@ -0,0 +1,20 @@
|
| +<!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>
|
|
|