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

Unified Diff: third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/transitions/bad-transition-shorthand-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698