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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/font-weight-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/font-weight-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/font-weight-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/font-weight-responsive.html
deleted file mode 100644
index d426aa431fa5f20212621c2392031b62134e2a5e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/font-weight-responsive.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'font-weight',
- from: 'inherit',
- to: '500',
- configurations: [{
- state: {inherited: '100'},
- expect: [
- {at: 0.25, is: '200'},
- {at: 0.75, is: '400'},
- ],
- }, {
- state: {inherited: '900'},
- expect: [
- {at: 0.25, is: '800'},
- {at: 0.75, is: '600'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'font-weight',
- from: 'bolder',
- to: 'lighter',
- configurations: [{
- state: {inherited: '300'},
- expect: [
- {at: 0.25, is: '300'},
- {at: 0.75, is: '200'},
- ],
- }, {
- state: {inherited: '500'},
- expect: [
- {at: 0.25, is: '600'},
- {at: 0.75, is: '300'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698