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

Unified Diff: LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html
diff --git a/LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html b/LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html
index 5870d97f6213daf8b44ce4a95cd4f61bdafcb463..0bd4a00d8048fe237c6334078a649f70462275f5 100644
--- a/LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html
+++ b/LayoutTests/transitions/transition-transform-translate-calculated-length-crash.html
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<style>
div {
- -webkit-transition: -webkit-transform 50ms;
+ -webkit-transition: transform 50ms;
}
#div2 {
- -webkit-transform: translate(calc(10% + 10px));
+ transform: translate(calc(10% + 10px));
}
</style>
<body>
@@ -17,6 +17,6 @@
if (window.testRunner)
testRunner.dumpAsText();
- document.getElementById("div1").style.webkitTransform = "translate(calc(10% + 20px))";
- document.getElementById("div2").style.webkitTransform = "none";
+ document.getElementById("div1").style.transform = "translate(calc(10% + 20px))";
+ document.getElementById("div2").style.transform = "none";
</script>

Powered by Google App Engine
This is Rietveld 408576698