blob: 0e6fa45c4f6bd7ffa8c61cfbe8a3aa206bc1befc [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2019 The PDFium Authors
Lei Zhang15c0b1e2019-03-05 19:54:16 +00002// 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
8class CFXJSE_AppEmbedderTest : public XFAJSEmbedderTest {};
9
10// Should not crash.
11TEST_F(CFXJSE_AppEmbedderTest, BUG_1252) {
12 ASSERT_TRUE(OpenDocument("simple_xfa.pdf"));
13
14 EXPECT_FALSE(Execute("app.activeDocs()"));
15}