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

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: incorporating review comments 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
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..d1c6e059c8598fa5678dcb956c590cb1adda7a5c
--- 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>
Rick Byers 2013/12/12 15:30:35 you fixed the case of 'x' (which I didn't notice),
gnana 2013/12/13 11:10:54 Done.
<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') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698