Chromium Code Reviews| Index: remoting/webapp/unittests/base_unittest.js |
| diff --git a/remoting/webapp/unittests/base_unittest.js b/remoting/webapp/unittests/base_unittest.js |
| index c36c6acad4254dca35fcf7affb8194799e603138..3b6f2772ee042b7f3f7e3d3a8f2a22694280a67e 100644 |
| --- a/remoting/webapp/unittests/base_unittest.js |
| +++ b/remoting/webapp/unittests/base_unittest.js |
| @@ -75,6 +75,12 @@ test('urljoin(url, opt_param) should urlencode |opt_param|', |
| '&escapist=%3A%2F%3F%23%5B%5D%40%24%26%2B%2C%3B%3D'); |
| }); |
| +test('escapeHTML(str) should escape special characters', function() { |
| + QUnit.equal( |
| + base.escapeHTML('<script>alert("hello")</script>'), |
| + '<script>alert("hello")</script>'); |
|
Jamie
2014/08/26 00:54:21
Are there any other characters that should be esca
|
| +}); |
| + |
| QUnit.asyncTest('Promise.sleep(delay) should fulfill the promise after |delay|', |
| function() { |
| var isCalled = false; |