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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/transitions/multiple-text-shadow-transition.html
diff --git a/LayoutTests/transitions/multiple-text-shadow-transition.html b/LayoutTests/transitions/multiple-text-shadow-transition.html
index f040c634f8213bd697454a739a252f628bb9afa1..6cb2263cad4133a6ddbc96716d3a94d5f37b5557 100644
--- a/LayoutTests/transitions/multiple-text-shadow-transition.html
+++ b/LayoutTests/transitions/multiple-text-shadow-transition.html
@@ -44,8 +44,9 @@
function checkShadow()
{
var container = document.getElementById('container');
- var shadow = window.getComputedStyle(container).getPropertyCSSValue('text-shadow');
-
+ var shadow = window.getComputedStyle(container).textShadow;
+ shadow = shadow.replace(/rgb([^)]*)/g, "color").split(",");
+
var result = document.getElementById('result');
if (shadow.length == 5)
result.innerHTML = 'PASS: saw 5 shadows during the transition';
« 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