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

Side by Side Diff: LayoutTests/compositing/gestures/resources/link-highlight-style.css

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 unified diff | Download patch
OLDNEW
1 /*Used for applying style to a <span> so it looks like a highlight*/ 1 /*Used for applying style to a <span> so it looks like a highlight*/
2 .fauxHighlight { 2 .fauxHighlight {
3 background-color: rgb(0, 255, 0); 3 background-color: rgb(0, 255, 0);
4 color: rgb(0, 255, 0); 4 color: rgb(0, 255, 0);
5 } 5 }
6 6
7 .fauxHighlightSquare { 7 .fauxHighlightSquare {
8 background-color: rgb(0, 255, 0); 8 background-color: rgb(0, 255, 0);
9 color: rgb(0, 255, 0); 9 color: rgb(0, 255, 0);
10 } 10 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 background-color: rgb(0, 255, 0); 49 background-color: rgb(0, 255, 0);
50 z-index: 1; 50 z-index: 1;
51 position: absolute; 51 position: absolute;
52 } 52 }
53 53
54 .squaredHighlight { 54 .squaredHighlight {
55 -webkit-border-radius: 0px; 55 -webkit-border-radius: 0px;
56 } 56 }
57 57
58 .composited { 58 .composited {
59 -webkit-transform: translateZ(0); 59 transform: translateZ(0);
60 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698