summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/page/page_popup_client_test.cc
blob: 4069b009f3d7311fa7414269a5448e8721253338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/page/page_popup_client.h"

#include "testing/gtest/include/gtest/gtest.h"
#include <string>

namespace blink {

TEST(PagePopupClientTest, AddJavaScriptString) {
  scoped_refptr<SharedBuffer> buffer = SharedBuffer::Create();
  PagePopupClient::AddJavaScriptString(
      String::FromUTF8("abc\r\n'\"</script>\t\f\v\xE2\x80\xA8\xE2\x80\xA9"),
      buffer.get());
  const Vector<char> contiguous = buffer->CopyAs<Vector<char>>();
  EXPECT_EQ(
      "\"abc\\r\\n'\\\"\\x3C/script>\\u0009\\u000C\\u000B\\u2028\\u2029\"",
      std::string(contiguous.data(), contiguous.size()));
}

}  // namespace blink