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

Unified Diff: LayoutTests/transforms/transform-inherit-initial-unprefixed.html

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/transforms/transform-inherit-initial-unprefixed.html
diff --git a/LayoutTests/transforms/transform-inherit-initial-unprefixed.html b/LayoutTests/transforms/transform-inherit-initial-unprefixed.html
index cff254454b16724ba206efe7ecf0950eee9b3196..9b1117a67ca9dde262fa42cac322387a1768085e 100644
--- a/LayoutTests/transforms/transform-inherit-initial-unprefixed.html
+++ b/LayoutTests/transforms/transform-inherit-initial-unprefixed.html
@@ -38,8 +38,8 @@ e = document.getElementById('inherit');
computedStyle = window.getComputedStyle(e, null);
debug("Testing inherit.");
-shouldBe("computedStyle.transform", "'matrix(0.5, 0.866025403784439, -0.866025403784439, 0.5, 0, 0)'");
-shouldBe("computedStyle.webkitTransform", "'matrix(0.5, 0.866025403784439, -0.866025403784439, 0.5, 0, 0)'");
+shouldBe("computedStyle.transform", "'matrix(0.5, 0.866025, -0.866025, 0.5, 0, 0)'");
+shouldBe("computedStyle.webkitTransform", "'matrix(0.5, 0.866025, -0.866025, 0.5, 0, 0)'");
shouldBe("computedStyle.transformOrigin", "'100px 0px'");
shouldBe("computedStyle.webkitTransformOrigin", "'100px 0px'");
shouldBe("computedStyle.transformStyle", "'preserve-3d'");

Powered by Google App Engine
This is Rietveld 408576698