Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: LayoutTests/transitions/bad-transition-shorthand-crash.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 #box { 6 #box {
7 position: relative; 7 position: relative;
8 height: 100px; 8 height: 100px;
9 width: 100px; 9 width: 100px;
10 background-color: blue; 10 background-color: blue;
11 -webkit-transform: rotate(0); 11 transform: rotate(0);
12 -webkit-transition: -webkit-transform, 2s; 12 -webkit-transition: -webkit-transform, 2s;
alancutter (OOO until 2018) 2014/10/14 05:13:48 Need to change the transition property target as w
13 } 13 }
14 </style> 14 </style>
15 <script> 15 <script>
16 if (window.testRunner) { 16 if (window.testRunner) {
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 testRunner.waitUntilDone(); 18 testRunner.waitUntilDone();
19 } 19 }
20 20
21 function finish() 21 function finish()
22 { 22 {
(...skipping 21 matching lines...) Expand all
44 <body> 44 <body>
45 45
46 <p> 46 <p>
47 This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property 47 This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property
48 CSS property. The crash would occur when you retarget the transition. This t est should not crash. 48 CSS property. The crash would occur when you retarget the transition. This t est should not crash.
49 </p> 49 </p>
50 <div id="box"> 50 <div id="box">
51 </div> 51 </div>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698