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

Side by Side Diff: LayoutTests/transitions/multiple-text-shadow-transition.html

Issue 715913003: Remove remaining testing of getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « LayoutTests/fast/dom/Window/get-set-properties-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #container { 5 #container {
6 width: 400px; 6 width: 400px;
7 height: 100px; 7 height: 100px;
8 margin: 10px; 8 margin: 10px;
9 -webkit-transition-property: text-shadow; 9 -webkit-transition-property: text-shadow;
10 -webkit-transition-duration: 1s; 10 -webkit-transition-duration: 1s;
(...skipping 26 matching lines...) Expand all
37 37
38 function setupTest() 38 function setupTest()
39 { 39 {
40 document.getElementById('container').className = 'final'; 40 document.getElementById('container').className = 'final';
41 window.setTimeout(checkShadow, 0); 41 window.setTimeout(checkShadow, 0);
42 } 42 }
43 43
44 function checkShadow() 44 function checkShadow()
45 { 45 {
46 var container = document.getElementById('container'); 46 var container = document.getElementById('container');
47 var shadow = window.getComputedStyle(container).getPropertyCSSValue('tex t-shadow'); 47 var shadow = window.getComputedStyle(container).textShadow;
48 48 shadow = shadow.replace(/rgb([^)]*)/g, "color").split(",");
49
49 var result = document.getElementById('result'); 50 var result = document.getElementById('result');
50 if (shadow.length == 5) 51 if (shadow.length == 5)
51 result.innerHTML = 'PASS: saw 5 shadows during the transition'; 52 result.innerHTML = 'PASS: saw 5 shadows during the transition';
52 else 53 else
53 result.innerHTML = 'FAIL: saw ' + shadow.length + ' shadows during t he transition'; 54 result.innerHTML = 'FAIL: saw ' + shadow.length + ' shadows during t he transition';
54 55
55 if (window.testRunner) 56 if (window.testRunner)
56 testRunner.notifyDone(); 57 testRunner.notifyDone();
57 } 58 }
58 59
59 window.addEventListener('load', setupTest, false); 60 window.addEventListener('load', setupTest, false);
60 </script> 61 </script>
61 </head> 62 </head>
62 <body> 63 <body>
63 <div id="container"> 64 <div id="container">
64 Shadowed text 65 Shadowed text
65 </div> 66 </div>
66 <div id="result"></div> 67 <div id="result"></div>
67 </body> 68 </body>
68 </html> 69 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Window/get-set-properties-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698