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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/touch-action-tests.css

Issue 2843363002: Fix TouchActionTest so that it doesn't use /deep/ (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/tests/data/touch-action-tests.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Use a class to apply touch-action so that we can easily manually check 2 Use a class to apply touch-action so that we can easily manually check
3 the tests for consistent behavior on IE10 as well. 3 the tests for consistent behavior on IE10 as well.
4 */ 4 */
5 * /deep/ .ta-none { 5 .ta-none {
6 -ms-touch-action: none; 6 -ms-touch-action: none;
7 touch-action: none; 7 touch-action: none;
8 } 8 }
9 .ta-auto { 9 .ta-auto {
10 -ms-touch-action: auto; 10 -ms-touch-action: auto;
11 touch-action: auto; 11 touch-action: auto;
12 } 12 }
13 .ta-panx { 13 .ta-panx {
14 -ms-touch-action: pan-x; 14 -ms-touch-action: pan-x;
15 touch-action: pan-x; 15 touch-action: pan-x;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 } 80 }
81 81
82 .marker { 82 .marker {
83 position: absolute; 83 position: absolute;
84 opacity: 0.5; 84 opacity: 0.5;
85 /* Note, if changing size, be sure to change kMarkerSize in JS too */ 85 /* Note, if changing size, be sure to change kMarkerSize in JS too */
86 width: 6px; 86 width: 6px;
87 height: 6px; 87 height: 6px;
88 background-color: red; 88 background-color: red;
89 } 89 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/tests/data/touch-action-tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698