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

Unified Diff: sky/engine/web/tests/data/touch-action-tests.css

Issue 1210153009: Remove (almost all of) //sky/engine/web (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « sky/engine/web/tests/data/touch-action-simple.html ('k') | sky/engine/web/tests/data/touch-action-tests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/web/tests/data/touch-action-tests.css
diff --git a/sky/engine/web/tests/data/touch-action-tests.css b/sky/engine/web/tests/data/touch-action-tests.css
deleted file mode 100644
index 12ae54691b2a8b90255bc64ba56190bf3cca772b..0000000000000000000000000000000000000000
--- a/sky/engine/web/tests/data/touch-action-tests.css
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- Use a class to apply touch-action so that we can easily manually check
- the tests for consistent behavior on IE10 as well.
-*/
-* /deep/ .ta-none {
- -ms-touch-action: none;
- touch-action: none;
-}
-.ta-auto {
- -ms-touch-action: auto;
- touch-action: auto;
-}
-.ta-panx {
- -ms-touch-action: pan-x;
- touch-action: pan-x;
-}
-.ta-pany {
- -ms-touch-action: pan-y;
- touch-action: pan-y;
-}
-.ta-panxy {
- -ms-touch-action: pan-x pan-y;
- touch-action: pan-x pan-y;
-}
-
-.ta-manipulation {
- -ms-touch-action: manipulation;
- touch-action: manipulation;
-}
-
-/* Make it easy to visualize div boundaries */
-[expected-action] {
- margin: 15px;
- padding: 10px;
- border: 1px solid blue;
- max-width: 700px;
-}
-
-[expected-action=none]::before {
- content: "NONE \2190 ";
-}
-[expected-action=auto]::before {
- content: "AUTO \2190 ";
-}
-[expected-action=pan-x]::before {
- content: "PAN-X \2190 ";
-}
-[expected-action=pan-y]::before {
- content: "PAN-Y \2190 ";
-}
-[expected-action=pan-x-y]::before {
- content: "PAN-X PAN-Y \2190 ";
-}
-[expected-action=manipulation]::before {
- content: "MANIPULATION \2190 ";
-}
-
-body {
- /* Leave gap for test to scroll down */
- padding-top: 100px;
- /* Ensure pages are scrollable for manual testing */
- height: 2000px;
- /* Use fixed line height so co-ordinates will be similar in test and browser */
- font-size: 20px;
- white-space: nowrap;
-}
-
-.scroll {
- overflow: scroll;
- height: 50px;
-}
-.spacer {
- height: 500px;
-}
-
-.marker {
- position: absolute;
- opacity: 0.5;
- /* Note, if changing size, be sure to change kMarkerSize in JS too */
- width: 6px;
- height: 6px;
- background-color: red;
-}
« no previous file with comments | « sky/engine/web/tests/data/touch-action-simple.html ('k') | sky/engine/web/tests/data/touch-action-tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698