OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/page/PagePopupClient.h" | 5 #include "core/page/PagePopupClient.h" |
6 | 6 |
| 7 #include <string> |
7 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
8 #include <string> | |
9 | 9 |
10 namespace blink { | 10 namespace blink { |
11 | 11 |
12 TEST(PagePopupClientTest, AddJavaScriptString) { | 12 TEST(PagePopupClientTest, AddJavaScriptString) { |
13 RefPtr<SharedBuffer> buffer = SharedBuffer::create(); | 13 RefPtr<SharedBuffer> buffer = SharedBuffer::create(); |
14 PagePopupClient::addJavaScriptString( | 14 PagePopupClient::addJavaScriptString( |
15 String::fromUTF8("abc\r\n'\"</script>\t\f\v\xE2\x80\xA8\xE2\x80\xA9"), | 15 String::fromUTF8("abc\r\n'\"</script>\t\f\v\xE2\x80\xA8\xE2\x80\xA9"), |
16 buffer.get()); | 16 buffer.get()); |
17 EXPECT_EQ( | 17 EXPECT_EQ( |
18 "\"abc\\r\\n'\\\"\\x3C/script>\\u0009\\u000C\\u000B\\u2028\\u2029\"", | 18 "\"abc\\r\\n'\\\"\\x3C/script>\\u0009\\u000C\\u000B\\u2028\\u2029\"", |
19 std::string(buffer->data(), buffer->size())); | 19 std::string(buffer->data(), buffer->size())); |
20 } | 20 } |
21 | 21 |
22 } // namespace blink | 22 } // namespace blink |
OLD | NEW |