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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/text-indent-responsive.html

Issue 2973013002: Group all responsive animation tests together (Closed)
Patch Set: Rebase Created 3 years, 5 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: third_party/WebKit/LayoutTests/animations/responsive/text-indent-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/text-indent-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/text-indent-responsive.html
deleted file mode 100644
index c1768801c9e6d90bbefb4d9834219e2aec444804..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/text-indent-responsive.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'text-indent',
- from: 'inherit',
- to: '200px each-line',
- configurations: [{
- state: {inherited: '10px'},
- expect: [
- {at: 0.25, is: '10px'},
- {at: 0.75, is: '200px each-line'},
- ],
- }, {
- state: {inherited: '100px each-line'},
- expect: [
- {at: 0.25, is: '125px each-line'},
- {at: 0.75, is: '175px each-line'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'text-indent',
- from: neutralKeyframe,
- to: '200px hanging',
- configurations: [{
- state: {underlying: '10px each-line hanging'},
- expect: [
- {at: 0.25, is: '10px each-line hanging'},
- {at: 0.75, is: '200px hanging'},
- ],
- }, {
- state: {underlying: '100px hanging'},
- expect: [
- {at: 0.25, is: '125px hanging'},
- {at: 0.75, is: '175px hanging'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698