1 // Copyright 2019 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "testing/gtest/include/gtest/gtest.h"
6 #include "testing/xfa_js_embedder_test.h"
7 
8 class CJX_ListEmbedderTest : public XFAJSEmbedderTest {};
9 
10 // Should not crash.
TEST_F(CJX_ListEmbedderTest,BUG_1263)11 TEST_F(CJX_ListEmbedderTest, BUG_1263) {
12   ASSERT_TRUE(OpenDocument("simple_xfa.pdf"));
13 
14   EXPECT_FALSE(Execute("nodes.insert($form,$)"));
15 }
16