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

Unified Diff: third_party/WebKit/LayoutTests/animations/responsive/shape-outside-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/shape-outside-responsive.html
diff --git a/third_party/WebKit/LayoutTests/animations/responsive/shape-outside-responsive.html b/third_party/WebKit/LayoutTests/animations/responsive/shape-outside-responsive.html
deleted file mode 100644
index c235307aa9c3537bd6984962446681b4d38ef503..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/responsive/shape-outside-responsive.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/responsive-test.js"></script>
-<script>
-assertCSSResponsive({
- property: 'shape-outside',
- from: neutralKeyframe,
- to: 'circle(100px at 200px 300px)',
- configurations: [{
- state: {underlying: 'inset(50px)'},
- expect: [
- {at: 0.25, is: 'inset(50px)'},
- {at: 0.75, is: 'circle(100px at 200px 300px)'},
- ],
- }, {
- state: {underlying: 'circle(200px at 0px 0px)'},
- expect: [
- {at: 0.25, is: 'circle(175px at 50px 75px)'},
- {at: 0.75, is: 'circle(125px at 150px 225px)'},
- ],
- }],
-});
-
-assertCSSResponsive({
- property: 'shape-outside',
- from: 'inherit',
- to: 'polygon(140px 240px, 340px 440px)',
- configurations: [{
- state: {inherited: 'polygon(100px 200px, 300px 400px, 500px 600px)'},
- expect: [
- {at: 0.25, is: 'polygon(100px 200px, 300px 400px, 500px 600px)'},
- {at: 0.75, is: 'polygon(140px 240px, 340px 440px)'},
- ],
- }, {
- state: {inherited: 'polygon(100px 200px, 300px 400px)'},
- expect: [
- {at: 0.25, is: 'polygon(110px 210px, 310px 410px)'},
- {at: 0.75, is: 'polygon(130px 230px, 330px 430px)'},
- ],
- }],
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698