| Index: third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html b/third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html
|
| index f7f129bb39be6b37c59bc189e453a068bbdce7b8..1659d4a73fd84b93a7f1f3dcb540ba9c1df7e013 100644
|
| --- a/third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html
|
| +++ b/third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html
|
| @@ -9,7 +9,7 @@
|
| width: 100px;
|
| background-color: blue;
|
| transform: rotate(0);
|
| - -webkit-transition: transform, 2s;
|
| + transition: transform, 2s;
|
| }
|
| </style>
|
| <script>
|
| @@ -27,14 +27,14 @@
|
| function returnToStart()
|
| {
|
| var box = document.getElementById('box');
|
| - box.style.webkitTransform = 'rotate(0)';
|
| + box.style.transform = 'rotate(0)';
|
| setTimeout(finish, 20);
|
| }
|
|
|
| function start()
|
| {
|
| var box = document.getElementById('box');
|
| - box.style.webkitTransform = 'rotate(180deg)';
|
| + box.style.transform = 'rotate(180deg)';
|
| setTimeout(returnToStart, 20);
|
| }
|
|
|
| @@ -44,7 +44,7 @@
|
| <body>
|
|
|
| <p>
|
| -This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property
|
| +This tests a crash that was occuring when you have both an explicit property and 'all' in the transition-property
|
| CSS property. The crash would occur when you retarget the transition. This test should not crash.
|
| </p>
|
| <div id="box">
|
|
|