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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/line-height-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/line-height-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/line-height-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/line-height-responsive.html
deleted file mode 100644
index df9cbf52122ad52ffffffaff47fa425ae4b02da5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/line-height-responsive.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<!DOCTYPE html>
-<style>
-.target {
- font-size: 4px;
-}
-</style>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'line-height',
- from: 'inherit',
- to: '200px',
- configurations: [{
- state: {inherited: '100px'},
- expect: [
- {at: 0.25, is: '125px'},
- {at: 0.75, is: '175px'},
- ],
- }, {
- state: {inherited: '10'},
- expect: [
- {at: 0.25, is: '40px'},
- {at: 0.75, is: '200px'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'line-height',
- from: neutralKeyframe,
- to: '200px',
- configurations: [{
- state: {underlying: '10'},
- expect: [
- {at: 0.25, is: '40px'},
- {at: 0.75, is: '200px'},
- ],
- }, {
- state: {underlying: '100px'},
- expect: [
- {at: 0.25, is: '125px'},
- {at: 0.75, is: '175px'},
- ],
- }, {
- state: {underlying: 'normal'},
- expect: [
- {at: 0.25, is: 'normal'},
- {at: 0.75, is: '200px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: '10'},
- expect: [
- {at: 0.25, is: '40px'},
- {at: 0.75, is: '200px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: '100px'},
- expect: [
- {at: 0.25, is: '125px'},
- {at: 0.75, is: '175px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: 'normal'},
- expect: [
- {at: 0.25, is: 'normal'},
- {at: 0.75, is: '200px'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'line-height',
- from: neutralKeyframe,
- to: '20',
- configurations: [{
- state: {underlying: '10'},
- expect: [
- {at: 0.25, is: '50px'},
- {at: 0.75, is: '70px'},
- ],
- }, {
- state: {underlying: '100px'},
- expect: [
- {at: 0.25, is: '100px'},
- {at: 0.75, is: '80px'},
- ],
- }, {
- state: {underlying: 'normal'},
- expect: [
- {at: 0.25, is: 'normal'},
- {at: 0.75, is: '80px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: '10'},
- expect: [
- {at: 0.25, is: '50px'},
- {at: 0.75, is: '70px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: '100px'},
- expect: [
- {at: 0.25, is: '100px'},
- {at: 0.75, is: '80px'},
- ],
- }, {
- state: {underlying: 'inherit', inherited: 'normal'},
- expect: [
- {at: 0.25, is: 'normal'},
- {at: 0.75, is: '80px'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698