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

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

Issue 723373006: Add CSS parsing support for the scroll-blocks-on property (in place of touch-action-delay) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Apply CR feedback Created 6 years, 1 month 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-delay-parsing.html
diff --git a/LayoutTests/fast/css/touch-action-delay-parsing.html b/LayoutTests/fast/css/touch-action-delay-parsing.html
deleted file mode 100644
index 3f350ffdfb966c9648d495355e7074d5ac8531d3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/touch-action-delay-parsing.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!DOCTYPE HTML>
-<html>
- <head>
- <script src="../../resources/js-test.js"></script>
- <style>
- /*
- Give some rules below something to override in order to test
- that they really are being parsed
- */
- .defscript {
- touch-action-delay: none;
- }
- </style>
- </head>
- <body>
- <p id="description"></p>
- <div class="test" id="default" expected="script"></div>
- <div class="test defscript" id="stylesheet-none" expected="none"></div>
- <div class="test defscript" id="stylesheet-explicit-script" style="touch-action-delay: script;" expected="script"></div>
- <div class="test defscript" id="stylesheet-explicit-none" style="touch-action-delay: none;" expected="none">
- <div class="test" id="inherited" expected="none"></div>
- <div class="test" id="explicit-inherit" style="touch-action-delay: inherit;" expected="none"></div>
- </div>
- <div class="test defscript" id="initial" style="touch-action-delay: initial;" expected="script"></div>
- <div class="test" id="explicit-invalid" style="touch-action-delay: bogus;" expected="script"></div>
- <div class="test" id="explicit-script" style="touch-action-delay: script;" expected="script"></div>
- <div id="console"></div>
- <script>
- description("Test the parsing and application of the touch-action-delay property.");
-
- var tests = document.querySelectorAll('.test');
- var style;
- for (var i = 0; i < tests.length; i++) {
- debug('Test case: ' + tests[i].id);
- style = window.getComputedStyle(tests[i]);
- shouldBeEqualToString('style.touchActionDelay', tests[i].attributes.expected.value);
- debug('');
- }
-
- successfullyParsed = true;
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698