| 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>
|
|
|