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

Unified Diff: LayoutTests/fast/css/auto-min-size.html

Issue 988523003: Reimplement min-width: auto (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments Created 5 years, 8 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/fast/css/auto-min-size.html
diff --git a/LayoutTests/fast/css/auto-min-size.html b/LayoutTests/fast/css/auto-min-size.html
index aae4e78861e4a368a487de1f00a331fb1b7b1d7f..b9e323b4981166ec7e8aff99ec8af9cfe2f77b75 100644
--- a/LayoutTests/fast/css/auto-min-size.html
+++ b/LayoutTests/fast/css/auto-min-size.html
@@ -8,7 +8,7 @@ shouldBe('getComputedStyle(div)["min-width"]', '"0px"');
div.style.minWidth = 'auto';
div.style.maxWidth = 'auto';
-shouldBe('div.style.minWidth', '""');
+shouldBe('div.style.minWidth', '"auto"');
shouldBe('div.style.maxWidth', '""');
shouldBe('getComputedStyle(div).minWidth', '"0px"');
@@ -21,7 +21,7 @@ shouldBe('getComputedStyle(div)["min-height"]', '"0px"');
div.style.minHeight = 'auto';
div.style.maxHeight = 'auto';
-shouldBe('div.style.minHeight', '""');
+shouldBe('div.style.minHeight', '"auto"');
shouldBe('div.style.maxHeight', '""');
shouldBe('getComputedStyle(div).minHeight', '"0px"');

Powered by Google App Engine
This is Rietveld 408576698