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

Unified Diff: LayoutTests/fast/css/touch-action-parsing.html

Issue 87973002: add pan-x and pan-y support to CSS touch-action parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated review comments and merge to trunk Created 7 years 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 | « no previous file | LayoutTests/fast/css/touch-action-parsing-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/touch-action-parsing.html
diff --git a/LayoutTests/fast/css/touch-action-parsing.html b/LayoutTests/fast/css/touch-action-parsing.html
old mode 100644
new mode 100755
index 41037807204d837010682711a29330aafc73754b..817b49b081fb6022eeff2585ffa73579cbe7cd82
--- a/LayoutTests/fast/css/touch-action-parsing.html
+++ b/LayoutTests/fast/css/touch-action-parsing.html
@@ -17,8 +17,15 @@
<div class="test" id="default" expected="auto"></div>
<div class="test defnone" id="stylesheet-none" expected="none"></div>
<div class="test defnone" id="explicit-auto" style="touch-action: auto;" expected="auto"></div>
+<div class="test" id="explicit-pan-x" style="touch-action: pan-x;" expected="pan-x"></div>
+<div class="test" id="explicit-pan-y" style="touch-action: pan-y;" expected="pan-y"></div>
+<div class="test" id="explicit-pan-x-pan-y" style="touch-action: pan-x pan-y;" expected="pan-x pan-y"></div>
+<div class="test" id="explicit-pan-y-pan-x" style="touch-action: pan-y pan-x;" expected="pan-x pan-y"></div>
<div class="test" id="explicit-none" style="touch-action: none;" expected="none"></div>
-<div class="test" id="explicit-invalid" style="touch-action: bogus;" expected="auto"></div>
+<div class="test" id="explicit-invalid-1" style="touch-action: bogus;" expected="auto"></div>
+<div class="test defnone" id="explicit-invalid-2" style="touch-action: auto pan-x;" expected="none"></div>
+<div class="test" id="explicit-invalid-3" style="touch-action: pan-y none;" expected="auto"></div>
+<div class="test" id="explicit-invalid-4" style="touch-action: pan-x pan-x;" expected="auto"></div>
<div style="touch-action: none;">
<div class="test" id="not-inherited" expected="auto"></div>
<div class="test" id="inherit" style="touch-action: inherit;" expected="none"></div>
« no previous file with comments | « no previous file | LayoutTests/fast/css/touch-action-parsing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698