diff options
author | Go MAEDA <maeda@farend.jp> | 2018-01-11 01:32:18 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-01-11 01:32:18 +0000 |
commit | e4142a833884205050309d4141e28c1b3bb1fe8c (patch) | |
tree | a1c080d8165414cab7e08e4e4138059f80b3a1f5 /test | |
parent | 9bf152c5b0cc2fdc408b09d344c4ae63a7fe76fc (diff) | |
download | redmine-e4142a833884205050309d4141e28c1b3bb1fe8c.tar.gz redmine-e4142a833884205050309d4141e28c1b3bb1fe8c.zip |
Allow "max-height", "max-width", "min-height" and "min-width" CSS properties in Textile (#26552).
Patch by Michael Gerz and Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17173 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index 76c954b4b..e0a8f7339 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -80,6 +80,8 @@ class Redmine::WikiFormatting::TextileFormatterTest < ActionView::TestCase 'p{border-right:1px}. text' => '<p style="border-right:1px;">text</p>', 'p{border-top:1px}. text' => '<p style="border-top:1px;">text</p>', 'p{border-bottom:1px}. text' => '<p style="border-bottom:1px;">text</p>', + 'p{max-width:100px}. text' => '<p style="max-width:100px;">text</p>', + 'p{width:50px}. text' => '<p style="width:50px;">text</p>', }, false) # multiple styles |