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

Unified Diff: LayoutTests/css3/filters/script-tests/filter-property-computed-style.js

Issue 1120133004: Serialize <number> to round to at most 6 decimals (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to fix win Created 5 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/css3/filters/script-tests/filter-property-computed-style.js
diff --git a/LayoutTests/css3/filters/script-tests/filter-property-computed-style.js b/LayoutTests/css3/filters/script-tests/filter-property-computed-style.js
index b372eebac2e6a151429457b5984daa5ba1c0023d..227a30c2a1d54bc1b6993b665d2679282ff858fe 100644
--- a/LayoutTests/css3/filters/script-tests/filter-property-computed-style.js
+++ b/LayoutTests/css3/filters/script-tests/filter-property-computed-style.js
@@ -44,7 +44,7 @@ testComputedFilterRule("Multiple values", "saturate(0.5) saturate(0.25)");
testComputedFilterRule("Rule combinations", "saturate(0.5) grayscale(0.25)");
testComputedFilterRule("Degrees value as integer", "hue-rotate(10deg)");
testComputedFilterRule("Degrees float value converts to integer", "hue-rotate(10.0deg)", "hue-rotate(10deg)");
-testComputedFilterRule("Radians value", "hue-rotate(10rad)", "hue-rotate(572.957795130823deg)");
+testComputedFilterRule("Radians value", "hue-rotate(10rad)", "hue-rotate(572.958deg)");
testComputedFilterRule("Gradians value", "hue-rotate(10grad)", "hue-rotate(9deg)");
testComputedFilterRule("Turns value", "hue-rotate(0.5turn)", "hue-rotate(180deg)");
testComputedFilterRule("Zero value", "hue-rotate(0)", "hue-rotate(0deg)");

Powered by Google App Engine
This is Rietveld 408576698