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

Side by Side Diff: LayoutTests/transitions/mismatched-shadow-styles.html

Issue 15738009: Beat the transition tests with a sanity stick. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Pass presubmit. Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 .box { 6 .box {
7 display: inline-block; 7 display: inline-block;
8 height: 100px; 8 height: 100px;
9 width: 100px; 9 width: 100px;
10 margin: 20px; 10 margin: 20px;
(...skipping 21 matching lines...) Expand all
32 32
33 #normal-to-inset { 33 #normal-to-inset {
34 box-shadow: 20px 20px 10px black; 34 box-shadow: 20px 20px 10px black;
35 } 35 }
36 36
37 .final #normal-to-inset { 37 .final #normal-to-inset {
38 box-shadow: 20px 20px 10px black inset; 38 box-shadow: 20px 20px 10px black inset;
39 } 39 }
40 40
41 </style> 41 </style>
42 <script src="resources/transition-test-helpers.js"></script> 42 <script src="../animations/resources/animation-test-helpers.js"></script>
43 <script type="text/javascript"> 43 <script type="text/javascript">
44 44
45 const expectedValues = [ 45 const expectedValues = [
46 // [time, element-id, property, expected-value, tolerance] 46 // [time, element-id, property, expected-value, tolerance]
47 // For box-shadow, we test shadow-x and shadow-y to see if it's animating. 47 // For box-shadow, we test shadow-x and shadow-y to see if it's animating.
48 [0.25, 'none-to-normal', 'box-shadow', [10, 10], 1], 48 [0.25, 'none-to-normal', 'box-shadow', [10, 10], 1],
49 [0.25, 'none-to-inset', 'box-shadow', [10, 10], 1], 49 [0.25, 'none-to-inset', 'box-shadow', [10, 10], 1],
50 [0.25, 'inset-to-normal', 'box-shadow', [20, 20], 1], 50 [0.25, 'inset-to-normal', 'box-shadow', [20, 20], 1],
51 [0.25, 'normal-to-inset', 'box-shadow', [20, 20], 1], 51 [0.25, 'normal-to-inset', 'box-shadow', [20, 20], 1],
52 ]; 52 ];
(...skipping 11 matching lines...) Expand all
64 <div id="none-to-normal" class="box"></div> 64 <div id="none-to-normal" class="box"></div>
65 <div id="none-to-inset" class="box"></div> 65 <div id="none-to-inset" class="box"></div>
66 <div id="inset-to-normal" class="box"></div> 66 <div id="inset-to-normal" class="box"></div>
67 <div id="normal-to-inset" class="box"></div> 67 <div id="normal-to-inset" class="box"></div>
68 68
69 <div id="result"> 69 <div id="result">
70 </div> 70 </div>
71 71
72 </body> 72 </body>
73 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698