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

Unified Diff: LayoutTests/fast/css/scroll-blocks-on-parsing.html

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 years, 4 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
Index: LayoutTests/fast/css/scroll-blocks-on-parsing.html
diff --git a/LayoutTests/fast/css/scroll-blocks-on-parsing.html b/LayoutTests/fast/css/scroll-blocks-on-parsing.html
deleted file mode 100644
index d5d17425b4f7f529d9584127b6de5592c8c26188..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/scroll-blocks-on-parsing.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE HTML>
-<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
-*/
-.defwheel {
- scroll-blocks-on: wheel-event;
-}
-</style>
-<div class="test" id="default" expected="none"></div>
-<div class="test defwheel" id="stylesheet-wheel" expected="wheel-event"></div>
-<div class="test defwheel" id="explicit-none" style="scroll-blocks-on: none;" expected="none"></div>
-<div class="test" id="explicit-start-touch" style="scroll-blocks-on: start-touch;" expected="start-touch"></div>
-<div class="test" id="explicit-wheel-event" style="scroll-blocks-on: wheel-event;" expected="wheel-event"></div>
-<div class="test" id="explicit-scroll-event" style="scroll-blocks-on: scroll-event;" expected="scroll-event"></div>
-<div class="test" id="explicit-all" style="scroll-blocks-on: start-touch wheel-event scroll-event;" expected="start-touch wheel-event scroll-event"></div>
-<div class="test" id="explicit-touch-wheel" style="scroll-blocks-on: start-touch wheel-event;" expected="start-touch wheel-event"></div>
-<div class="test" id="explicit-invalid-bogus" style="scroll-blocks-on: bogus;" expected="none"></div>
-<div class="test" id="explicit-invalid-combination" style="scroll-blocks-on: wheel-event none;" expected="none"></div>
-<div class="test defwheel" id="explicit-invalid-override" style="scroll-blocks-on: none start-touch;" expected="wheel-event"></div>
-<div class="test" id="explicit-invalid-duplicate" style="scroll-blocks-on: start-touch start-touch;" expected="none"></div>
-<div class="test" id="explicit-invalid-bogus-list" style="scroll-blocks-on: wheel-event bogus scroll-event;" expected="none"></div>
-<div style="scroll-blocks-on: wheel-event;">
- <div class="test" id="not-inherited" expected="none"></div>
- <div class="test" id="inherit" style="scroll-blocks-on: inherit;" expected="wheel-event"></div>
-</div>
-<div class="test defwheel" id="initial" style="scroll-blocks-on: initial;" expected="none"></div>
-
-<script>
-description("Test the parsing and application of the scroll-blocks-on 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.scrollBlocksOn', tests[i].attributes.expected.value);
- debug('');
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698