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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/border-image-slice-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/border-image-slice-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/border-image-slice-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/border-image-slice-responsive.html
deleted file mode 100644
index 5cea34c427590dbda41b7e58433c011d6a6d0e86..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/border-image-slice-responsive.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'border-image-slice',
- from: neutralKeyframe,
- to: '110 120%',
- configurations: [{
- state: {underlying: '10 20%'},
- expect: [
- {at: 0.25, is: '35 45%'},
- {at: 0.75, is: '85 95%'},
- ],
- }, {
- state: {underlying: '10 20% fill'},
- expect: [
- {at: 0.25, is: '10 20% fill'},
- {at: 0.75, is: '110 120%'},
- ],
- }, {
- state: {underlying: '10% 20'},
- expect: [
- {at: 0.25, is: '10% 20'},
- {at: 0.75, is: '110 120%'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'border-image-slice',
- from: 'inherit',
- to: '110 120% fill',
- configurations: [{
- state: {inherited: '10 20% fill'},
- expect: [
- {at: 0.25, is: '35 45% fill'},
- {at: 0.75, is: '85 95% fill'},
- ],
- }, {
- state: {inherited: '10% 20 fill'},
- expect: [
- {at: 0.25, is: '10% 20 fill'},
- {at: 0.75, is: '110 120% fill'},
- ],
- }, {
- state: {inherited: '10 20%'},
- expect: [
- {at: 0.25, is: '10 20%'},
- {at: 0.75, is: '110 120% fill'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698