Changeset 8095
- Timestamp:
- 11/06/07 18:57:33 (10 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/assertions/tag_assertions.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8094 r8095 1 1 *SVN* 2 3 * Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas] 2 4 3 5 * Add documentation for route conditions. Closes #9041 [innu, manfred] trunk/actionpack/lib/action_controller/assertions/tag_assertions.rb
r7437 r8095 38 38 # counted. 39 39 # * <tt>:content</tt>: the textual content of the node must match the 40 # given value. This will not match HTML tags in the body of a41 # tag--only text.40 # given value. This will not match HTML tags in the body of a 41 # tag--only text. 42 42 # 43 43 # Conditions are matched using the following algorithm: … … 91 91 # :child => /hello world/ } 92 92 # 93 # < strong>Please note</strong: #assert_tag and #assert_no_tag only work93 # <b>Please note</b>: #assert_tag and #assert_no_tag only work 94 94 # with well-formed XHTML. They recognize a few tags as implicitly self-closing 95 95 # (like br and hr and such) but will not work correctly with tags