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

Unified Diff: LayoutTests/transitions/transition-hit-test-transform.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-hit-test-transform.html
diff --git a/LayoutTests/transitions/transition-hit-test-transform.html b/LayoutTests/transitions/transition-hit-test-transform.html
index 69cded33fda97470ad5591b79da684b6245b0844..dba55498d9b11715601f3435d3945b9d7fb10afb 100644
--- a/LayoutTests/transitions/transition-hit-test-transform.html
+++ b/LayoutTests/transitions/transition-hit-test-transform.html
@@ -9,8 +9,8 @@
height: 200px;
width: 200px;
background-color: red;
- -webkit-transform: translateX(100px);
- -webkit-transition-property: -webkit-transform;
+ transform: translateX(100px);
+ -webkit-transition-property: transform;
-webkit-transition-duration: 4s;
-webkit-transition-timing-function: linear;
}
@@ -73,7 +73,7 @@
</head>
<body onload="startTest()">
<div>
- This test starts a transition of the '-webkit-transform' property and then does elementFromPoint calls
+ This test starts a transition of the 'transform' property and then does elementFromPoint calls
at the shown yellow dots to see if hit testing works
</div>
<div id="target"></div>

Powered by Google App Engine
This is Rietveld 408576698