Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / transitions / transition-shape-outside-crash.html
1 <!DOCTYPE html>
2 <p>This test passes if it does not assert or crash.</p>
3 <input autofocus ontransitionend="transitionFinished();">
4 <style>
5 input {
6     transition: ease, 50ms;
7     shape-outside: padding-box;
8 }
9 </style>
10 <script>
11 function transitionFinished() {
12     if (window.testRunner)
13         testRunner.notifyDone();
14 }
15
16 if (window.testRunner) {
17     testRunner.dumpAsText();
18     testRunner.waitUntilDone();
19 }
20 </script>