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

Unified Diff: third_party/WebKit/LayoutTests/transitions/mismatched-shadow-transitions.html

Issue 2680923005: Refactor CSS Transitions to use CSSInterpolationTypes instead of AnimatableValues (Closed)
Patch Set: Fix transition tests to not expect incorrect behaviour Created 3 years, 10 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/transitions/mismatched-shadow-transitions.html
diff --git a/third_party/WebKit/LayoutTests/transitions/mismatched-shadow-transitions.html b/third_party/WebKit/LayoutTests/transitions/mismatched-shadow-transitions.html
deleted file mode 100644
index 4df7e343ad2feeaf260f2659c310edf0a38a12eb..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/transitions/mismatched-shadow-transitions.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE>
-
-<html>
-<head>
- <style>
- .box {
- height: 100px;
- width: 100px;
- margin: 50px;
- border: 1px solid black;
- text-align: center;
- padding: 20px;
- background-repeat: no-repeat;
- -webkit-transition-duration: 1s;
- -webkit-transition-timing-function: linear;
- -webkit-transition-property: box-shadow;
- }
-
- #box {
- box-shadow: inset 10px 20px 4px gray;
- }
-
- #box.final {
- box-shadow: inset 20px 10px 4px gray, 10px 10px 6px black;
- }
-
- </style>
- <script src="../animations/resources/animation-test-helpers.js"></script>
- <script type="text/javascript">
-
- const expectedValues = [
- // [time, element-id, property, expected-value, tolerance]
- [0.5, 'box', 'box-shadow', "rgb(128, 128, 128) 15px 15px 4px 0px inset, rgba(0, 0, 0, 0.5) 5px 5px 3px 0px", 4],
- ];
-
- function setupTest()
- {
- document.getElementById('box').className = 'box final';
- }
-
- runTransitionTest(expectedValues, setupTest);
- </script>
-</head>
-<body>
-
- <div id="box" class="box">BOX</div>
- <div id="result"></div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698