From 2674fe38eb61b152e953a1a122040e119fd9f802 Mon Sep 17 00:00:00 2001 From: razh Date: Sun, 17 Mar 2019 14:38:23 -0400 Subject: Revert "Pass HTML responses as plain-text in rails-ujs" This reverts commit 48e44edfd0a8a7a29aa8fad39638ac0ee5243f42. See discussion in #32287 For HTML content in `ajax:success` handlers, `event.detail[0]` should be an `HTMLDocument` instance. --- actionview/test/ujs/public/test/call-remote.js | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'actionview/test/ujs') diff --git a/actionview/test/ujs/public/test/call-remote.js b/actionview/test/ujs/public/test/call-remote.js index 778dc1b09a..c8813bb82a 100644 --- a/actionview/test/ujs/public/test/call-remote.js +++ b/actionview/test/ujs/public/test/call-remote.js @@ -128,17 +128,6 @@ asyncTest('execution of JS code does not modify current DOM', 1, function() { }) }) -asyncTest('HTML content should be plain-text', 1, function() { - buildForm({ method: 'post', 'data-type': 'html' }) - - $('form').append('') - $('form').append('') - - submit(function(e, data, status, xhr) { - ok(data === '

hello

', 'returned data should be a plain-text string') - }) -}) - asyncTest('XML document should be parsed', 1, function() { buildForm({ method: 'post', 'data-type': 'html' }) -- cgit v1.2.3