aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/html-scanner/tokenizer_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/html-scanner/tokenizer_test.rb')
-rw-r--r--actionpack/test/controller/html-scanner/tokenizer_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/controller/html-scanner/tokenizer_test.rb b/actionpack/test/controller/html-scanner/tokenizer_test.rb
index 53f032ac17..a001bcbbad 100644
--- a/actionpack/test/controller/html-scanner/tokenizer_test.rb
+++ b/actionpack/test/controller/html-scanner/tokenizer_test.rb
@@ -78,6 +78,13 @@ class TokenizerTest < Test::Unit::TestCase
assert_end
end
+ def test_unterminated_cdata_tag
+ tokenize %{<content:encoded><![CDATA[ neverending...}
+ assert_next %{<content:encoded>}
+ assert_next %{<![CDATA[ neverending...}
+ assert_end
+ end
+
def test_less_than_with_space
tokenize %{original < hello > world}
assert_next %{original }