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

Unified Diff: LayoutTests/css3/calc/calc-errors.html

Issue 345903005: calc expressions should support time, angle and frequency values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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/calc/calc-errors.html
diff --git a/LayoutTests/css3/calc/calc-errors.html b/LayoutTests/css3/calc/calc-errors.html
index 310e495dd217c4f57cfbe141bfd41e924bd54270..077841df102dcb8dc558ab98a0d95830927ca9d5 100644
--- a/LayoutTests/css3/calc/calc-errors.html
+++ b/LayoutTests/css3/calc/calc-errors.html
@@ -17,11 +17,6 @@
<div style="width: 100px; width: calc( flim;">unclosed calc with garbage</div>
<div style="width: 100px; width: calc( flim );">garbage</div>
-<!-- unsupported units -->
-<div style="width: 100px; width: calc(10dpi);">dpi</div>
-<div style="width: 100px; width: calc(10dpi / 4);">dpi / number</div>
-<div style="width: 100px; width: calc(5dpi + 5dpi);">dpi + dpi</div>
alancutter (OOO until 2018) 2014/07/02 05:56:10 Shouldn't these remain? This patch does not add su
-
<!-- zero division -->
<div style="width: 100px; width: calc(1ex / 0);">zero division</div>

Powered by Google App Engine
This is Rietveld 408576698